작은 텍스트를 .txt
파일로 작성하려면 어떻게해야합니까? 3-4 시간 이상 인터넷 검색을 해왔지만 어떻게해야하는지 찾을 수 없습니다.
fwrite();
주장이 너무 많아서 사용법을 모르겠습니다.
이름과 몇 개의 숫자 만 .txt
파일 에 쓰려고 할 때 가장 쉬운 기능은 무엇입니까 ?
편집 : 내 코드 조각을 추가했습니다.
char name;
int number;
FILE *f;
f = fopen("contacts.pcl", "a");
printf("\nNew contact name: ");
scanf("%s", &name);
printf("New contact number: ");
scanf("%i", &number);
fprintf(f, "%c\n[ %d ]\n\n", name, number);
fclose(f);
답변
FILE *f = fopen("file.txt", "w");
if (f == NULL)
{
printf("Error opening file!\n");
exit(1);
}
/* print some text */
const char *text = "Write this to the file";
fprintf(f, "Some text: %s\n", text);
/* print integers and floats */
int i = 1;
float py = 3.1415927;
fprintf(f, "Integer: %d, float: %f\n", i, py);
/* printing single chatacters */
char c = 'A';
fprintf(f, "A character: %c\n", c);
fclose(f);
답변
FILE *fp;
char* str = "string";
int x = 10;
fp=fopen("test.txt", "w");
if(fp == NULL)
exit(-1);
fprintf(fp, "This is a string which is written to a file\n");
fprintf(fp, "The string has %d words and keyword %s\n", x, str);
fclose(fp);
답변
글쎄, 먼저 C에 관한 좋은 책을 읽고 언어를 이해해야합니다.
FILE *fp;
fp = fopen("c:\\test.txt", "wb");
if(fp == null)
return;
char x[10]="ABCDEFGHIJ";
fwrite(x, sizeof(x[0]), sizeof(x)/sizeof(x[0]), fp);
fclose(fp);