----------------解决方案--------------------------------------------------------
#include <stdio.h>
int main(void) {
printf("Hello,world!");
return 0;
}
----------------解决方案--------------------------------------------------------
我用的是 WIN-TC 帮我列这个的标准C语言hello world
----------------解决方案--------------------------------------------------------
#include <stdio.h>
#include <conio.h>
int main(void) {
printf("Hello,world!");
getch();
return 0;
}
----------------解决方案--------------------------------------------------------
哦,谢谢了,帮我解释一下getch();什么意思
----------------解决方案--------------------------------------------------------