这个代码怎么理解里面的while{;}和(int argc,char **agrv),结果为什么是hello

#include "stdio.h"
int main(int argc,char **agrv)
{
 printf("hello");
 while(1)
 {
  ;
 }
 return 0;
 
}

慕瓜2161724
浏览 1128回答 1
1回答

asd8532

为什么不是hello先print hello,然后while进入死循环,循环体没有内容
打开App,查看更多内容
随时随地看视频慕课网APP