Cでコンソールとファイルに書き込むことができる関数を作成しようとしています.
次のコードがありますが、引数を追加できないことに気付きました (printf など)。
#include <stdio.h>
int footprint (FILE *outfile, char inarray[]) {
printf("%s", inarray[]);
fprintf(outfile, "%s", inarray[]);
}
int main (int argc, char *argv[]) {
FILE *outfile;
char *mode = "a+";
char outputFilename[] = "/tmp/footprint.log";
outfile = fopen(outputFilename, mode);
char bigfoot[] = "It Smells!\n";
int howbad = 10;
footprint(outfile, "\n--------\n");
/* then i realized that i can't send the arguments to fn:footprints */
footprint(outfile, "%s %i",bigfoot, howbad); /* error here! I can't send bigfoot and howbad*/
return 0;
}
私はここで立ち往生しています。任意のヒント?function:footprints に送信する引数は、文字列、文字、および整数で構成されます。
ラッパーを作成できる他の printf または fprintf fns はありますか?
ありがとうございます。返信をお待ちしております。