1、讀程序寫出程序執行結果
#include <stdio.h>
void main()
{ int n= -5 ;
while(++n)
printf("%3d", ++n) ;
}
2、讀程序寫出程序執行結果
#include <stdio.h>
#define S(x) x*x
void main()
{ int a,k=3,m=1;
a=S(k+m);
printf("%d",a);
}
3、讀程序寫出程序執行結果
#include <stdio.h>
void main()
{ int y=-1 ;
do
{ y++;
}while(y--);
printf("%d\n",y--);
}
4、讀程序寫出程序執行結果
#include <stdio.h>
int fib(int g)
{ switch(g)
{ case 0: return 0;
case 1:
case 2: return 1;
}
return -1;
}
void main()
{ printf(“%d\n”, fib(5)) ;
}