我对此非常感兴趣。 有人可以告诉我如何解决这个问题吗?
#include <stdio.h>
int main(int argc, const char * argv[])
{
int sum;
sum = 50 + 25;
"The sum of 50 and 25 is %i", sum ;
return 0;
}
答案 0 :(得分:3)
更改行:
"The sum of 50 and 25 is %i", sum ;
为:
printf( "The sum of 50 and 25 is %i", sum );
引号中的行本身就是一个语法错误,恰好是编译器得到的(显然它会引发警告)。
答案 1 :(得分:0)
由于未使用您的总和值,您收到此警告。要打印它,请使用NSLog