#include <stdio.h>
#include <stdlib.h>
int main()
{
//printf("即将打开记事本程序!\n");
system("notepad");
//printf("即将打开计算器");
system("calc");
/*
printf("即将打开程序目录\n");
system("dir");
*/
system("pause");
return 0;
}
pause会输出"请按任意键继续. . ."。
system(“pause”)的头文件 #include <stdlib.h>