33,317
社区成员
发帖
与我相关
我的任务
分享
#include <stdio.h>
int main()
{
{
int i = 0; //这里的i的作用域只在花刮号里才有作用。叫块作用域
printf("%d\n",i);
}
int i = 1;
printf("%d\n",i);
return 0;
}
#include <stdio.h>
int main()
{
int i = 0;
printf("%d\n",i);
int i = 1;
printf("%d\n",i);
return 0;
}
{
for (...)
for (...)
{
if () goto the_end;
}
the_end:;
}