少哪两个参数
#include <stdio.h>
int main(void)
{
int ten = 10, two = 2;
printf("%d minus %d is %d\n", ten ); /* 少写了两个参数 */
getchar(); /* 等待用户按回车 */
return 0;
}