1. 如果是在windows下,若用的是VC,那么你可以这样:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("Hello world!\n");
system("pause");
// add this line to your code
return 0;
}
当然,使用getchar()函数也可以,这种方式DOS和windows通用。
还有一种情况就是你可以在windows的控制台下运行该可执行程序,而此时就不必添加getchar()和system("pause")也能看到结果。
2. 如果是在linux/unix下,编译好后你可以直接在terminal中执行 "./hello"即可看到结果(这里假设可执行程序的文件名为 hello)。