填空题

设变量已正确定义为整型,则表达式n=i=12,++i,i++的值为______。

【参考答案】

13
<上一题 目录 下一题>
热门 试题

填空题
以下程序的输出结果是______。 #include <stdio.h> #include <string.h> char* fun( char *t) char *p=t; return(p+strlen(t) 2); main() char *str= abcdefgh ; str=fun(str); puts(str);
填空题
以下程序的输出结果是______。 #include <stdio.h> main() int i; for(i=’a’;i<’f’;i++,i++)printf( %c ,i-’a’+’A’); printf( n );
相关试题
  • 下列程序运行时,若输入1abcedf2df<回车...
  • 以下程序的运行结果是______。 #in...
  • 以下程序的输出结果是______。 #in...
  • 以下程序的功能是:删去一维数组中所有相同...
  • 有以下程序,若运行时从键盘输入:18,1...