——I’m so happy that you could come to English land with us for the holidays. ——_________ . It’s the first time for me to be out of china.
以下程序中的循环执行了( )次。 #define N 2 #define M N+1 #define NUM (M+1)*M/2 main() { int i,n=0; for(i=0;i<NUM;i++) n++; printf("%d\n",n); }
若有函数定义: int func() {static int m=0; return m++; } 以下程序段运行后屏幕输出为( )。 int i; for(i=1;i<=4;i++) func(); printf("%d",func());
若有定义: struct teacher { int num; char name[10]; char sex; int age; }t1={2001,"Li Ming",'M',35};则下列( )对结构变量引用是正确的。