首页
新闻资讯
技术文摘
速查手册
经典下载
疑难问吧
视频教程
图片壁纸
颖思校园
颖思论坛
函数名: system 功 能: 发出一个DOS命令 用 法: int system(char *command); 程序例:
#include <stdlib.h> #include <stdio.h>
int main(void) { printf("About to spawn command.com and run a DOS command\n"); system("dir"); return 0; }
0