printf("a+b=%d",add(a,b)
提问:printf("a+b=%d",add(a,b)
网友回答:
正确的是
printf("a+b=%d",add(a,b));
(你的是因为复制网上代码引起的)
功能是调用add(a,b)函数,并输出类似
a+b=100
这样格式的结果