함수 기능
주어진 형식에 맞추어진 문자열을 파일에 출력하는 함수
함수 원형
#include <stdio.h>
int printf(const char *format, ...);
int fprintf(FILE *fp, const char *format, ...);
함수 파라메터
format
형식 지정자
함수 예제
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
char *text = "My test txt!\n";
FILE *fp;
fp = fopen("ssu_test.txt", "w");
printf("%s", text);
fprintf(fp, "%s", text);
exit(0);
}
리눅스시스템 프로그래밍 - 홍지만 저
교재 내에 있는 예제를 바탕으로 작성한 글 입니다.
'C & LINUX' 카테고리의 다른 글
C / LINUX scanf(3) fscanf(3) sscanf(3) (0) | 2022.05.02 |
---|---|
C / LINUX sprintf(3) snprintf(3) (0) | 2022.05.02 |
C / LINUX ftell(3) fseek(3) rewind(3) (0) | 2022.05.02 |
C / LINUX fread(3), fwrite(3) (0) | 2022.05.02 |
C / LINUX stat() fstat() lstat() (0) | 2022.05.01 |