该程序输出??

  1. #include<stdio.h> 
  2.  
  3. int main(void
  4.   int a,b,c,abc=0; 
  5.   a=b=c=40; 
  6.   if(c) 
  7.   { 
  8.     int abc; 
  9.     abc = a*b+c; 
  10.   } 
  11.   printf("%d,%d",abc,c); 
  12.   return 0; 
  13. }

不敢大意,还是写来试了一下。

结果输出0,40;呵呵!