标签: c++ c arguments
我想用随机数量的参数开发一个c函数:
int myfunction(char *fmt,...) { .... }
然后在我的函数中我想用我的函数的相同输入参数(printf()和其他随机参数)调用fmt:
printf()
fmt
int myfunction(char *fmt,...) { .... printf(/*What I have to put here?*/) .... }
在这种情况下如何拨打printf()?