函数名: system 
 功  能: 发出一个DOS命令 
 用  法: #include <stdlib.h> 
         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; 
 }