C语言的System使用

时间:2022-09-02 23:26:42
#include <stdio.h>
#include <stdlib.h>
int main()
{

//printf("即将打开记事本程序!\n");
//system("notepad");
//system("start notepad");

/*
printf("即将打开程序目录\n");
system("dir");*/

//printf("即将打开计算器");
//system("calc");
//system("start calc");
//system("calc");


getchar();
return 0;
}

效果:

C语言的System使用

C语言的System使用

C语言的System使用

除了调用系统的函数以外,system还可以调用自己的程序