1
9
这里有一个简单的C代码,它可以完成这项工作,您必须包含stdarg.h。 void panic(const char *fmt, ...){ char buf[50]; va_list argptr; /* Set up the variable argument list here */ va_start(argptr, fmt); /* Start up variable arguments */ vsprintf(buf, fmt, argptr); /* print the variable arguments to buffer */ va_end(argptr); /* Signify end of processing of variable arguments */ fprintf(stderr, buf); /* print the message to stderr */ exit(-1); } 典型的调用是 panic("The file %s was not found\n", file_name); /* assume file_name is "foobar" */ /* Output would be: The file foobar was not found */ 希望这有帮助, 最好的问候, 汤姆。 |
2
5
你想用的是
vsprintf
它接受
编辑: 你应该考虑 _vsnprintf 这将有助于避免vsprintf愉快地创建的缓冲区溢出问题。 |
3
2
通常有一个调用到变量args版本的函数,它接受
|
4
2
其他人已经把你指给
|
Community wiki · C中有哪些耗时的操作? 1 年前 |
Community wiki · 将所有处理器电源都投入到任务中 1 年前 |
Community wiki · C++为C添加了什么?[已关闭] 1 年前 |
Community wiki · 打印1到1000,不带循环或条件 1 年前 |