#include<stdio.h>
int test=5;
 void main()
{
int test=10;
void fun1();/*----5----*/
printf("2--%d\n",test);/*----10----*/
    {int test=15;
    printf("3--%d\n",test);/*----15----*/
    }
}
void fun1()
{ printf("1--%d\n",test);
}C语言100问第一题(求各位大神的帮助!!!)

相关文章:

  • 2022-12-23
  • 2021-05-23
  • 2022-01-11
  • 2021-12-22
  • 2022-01-01
  • 2022-01-15
猜你喜欢
  • 2022-01-11
  • 2021-11-11
  • 2021-06-30
  • 2021-08-08
  • 2021-10-27
  • 2021-12-02
  • 2021-08-02
相关资源
相似解决方案