以下程序将打印什么字符串输出?

#define MESG this is a test 

#include <stdio.h> 

int main(void) { 
   int n = 0; 

   while ( n < 5 ) 
      printf(%s\n, MESG); 
      n++; 
   printf(That's all.\n); 
   return 0; 
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...