函数问题
#include<stdio.h>#include<windows.h>
int c = 0;
void pp()
{
c = c + 1;
}
int main()
{
void pp();
printf("%d\n", c);
system("pause");
return 0;
}
我调用了函数 void pp 为什么打印出来的结果是0呢?
能给我解释一下吗? 你没有调用啊
告诉我,函数应该怎么调用^_^ 13行是声明函数,吧void去掉 函数在main()函数前面不需要申明,在main()函数后面才需要申明,所以你可以直接调用pp(); {:5_92:}函数是这样调用的吗,亲 谢谢,大家{:9_240:} #include<stdio.h>
int c = 0;
void pp();
int main()
{
pp();
printf("%d\n", c);
system("pause");
return 0;
}
void pp()
{
c = c + 1;
}
#include<stdio.h>
int c = 0;
void pp()
{
c = c + 1;
}
int main()
{
pp();
printf("%d\n", c);
system("pause");
return 0;
} 你定义打印的 C 是全局变量,而函数pp里的c是局部变量,何况你也没传参数进去,两者毫无关系,全局变量值就是0
页:
[1]