web-dev-qa-db-ja.com

.txtファイルに書き込みますか?

小さなテキストを.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);
133
Stian Olsen
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);
239
user529758
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);
20
cppcoder