标签: c parameters buffer printf
我有一个变量
char buffer[250] = "Your score is %d";
我希望像
printf("%s", buffer);
但也传递第二个参数,以便我可以像"Your score is 50"
"Your score is 50"
有可能吗?
答案 0 :(得分:4)
您可以打印字符串本身,如下所示:
printf( buffer , 50) ;