我想将fprintf()
同一行的两个调用组合成一个函数调用,例如 fprintf_together_with_variable_name(FILE* fpheader, FILE* fpresult, char* f_str,...)
.
我的 MWE:
#include <stdio.h>
#define var2str(e) (#e)
int main() {
FILE* fpresult = fopen("result.txt", "a");
FILE* fpheader = fopen("header.txt", "w");
char* mtx = "web-Google.mtx";
double time = 3.452;
int flop = 7684;
fprintf(fpresult, "%s\t", mtx); fprintf(fpheader, "%s\t", var2str(mtx));
fprintf(fpresult, "%g\t", time); fprintf(fpheader, "%s\t", var2str(time));
fprintf(fpresult, "%d\t", flop); fprintf(fpheader, "%s\t", var2str(flop));
fprintf(fpresult, "\n"); fprintf(fpheader, "\n");
fclose(fpresult);
fclose(fpheader);
return 0;
}
很容易为每种类型编写一个函数int
,double
或者char*
将变量名作为字符串传递;但是,拥有一个只接受变量并处理所有类型的通用函数会很棒。