下面的C程序的输出是什么?
null
#include <stdio.h> int main() { while () printf ( "Hello Inner Geek" ); printf ( "Hello Outer Geek" ); return 0; } |
(A) 你好,外太空极客 (B) 你好,内鬼 你好,外太空极客 (C) 编译错误 (D) 你好,内鬼 答复: (C) 说明: while循环缺少条件表达式。 这个问题的小测验
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END