Я пытаюсь написать функцию, которая позволяет мне записывать в консоль и файл в 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;
}
Я застрял здесь. Какие-нибудь советы? Для аргументов, которые я хочу отправить в функцию: footprints, она будет состоять из строк, символов и целых чисел.
Существуют ли другие принты типа printf или fprintf, которые я могу попытаться создать в качестве оболочки?
Спасибо и надеюсь услышать ваши ответы.