c语言是可以随用随定义,只要在用之前定义就行了,为什么和老师说的不一样?
1 #include<stdio.h> 2 3 int main() 4 { 5 printf("please intput your first number:"); 6 int num1; 7 scanf("%d",&num1); 8 printf("please input your second number:"); 9 int num2; 10 scanf("%d",&num2); 11 printf("the sum of your input numbers is:%d\n",num1+num2); 12 return 0; 13 }
这一段代码是可以在linux下的gcc编译器通过编译并且运行的