2016-10-23 10:09发布
如果加了就会出现 [Warning] parameter names (without types) in function declaration [enabled by default]
}则申明无歧义,没有警告。
}则提示 line 3 [Warning] parameter names (without types) in function declaration [enabled by default]int main(int argc, char *argv[]){
我也迷惑,回答问题有字书限制
编译器把你那一行理解成函数声明(function declaration)了,所以提示你:没有参数的类型(without types)比如:int main(int argc, char *argv[]){
调用函数无需写返回值类型,直接写函数名和参数
最多设置5个标签!
付费偷看金额在0.1-10元之间
}
则申明无歧义,没有警告。
}
则提示 line 3 [Warning] parameter names (without types) in function declaration [enabled by default]
int main(int argc, char *argv[])
{
我也迷惑,回答问题有字书限制
编译器把你那一行理解成函数声明(function declaration)了,所以提示你:没有参数的类型(without types)
比如:
int main(int argc, char *argv[])
{
调用函数无需写返回值类型,直接写函数名和参数
一周热门 更多>