再顶。坚持!
函数名: system 功 能: 发出一个DOS命令 用 法: int system(char *command); 程序例:
#include #include
int main(void) { printf("About to spawn command.com and run a DOS command\n"); system("dir"); //这里就是DOS下的dir命令 return 0; }
#include<stdio.h>#include<stdlib.h>