C语言的system函数

我知道C语言中system函数是执行DOS命令,可不知道它的具体是在哪个头文件,我在tc3.0++里就算无头文件都可以用,他是C语言的语法吗?
有人说它的头文件是stdlib.h,真的吗?如果是真的为什么我不用头文件都可以用?

  system(系统)函数
  windows操作系统下system () 函数详解(主要是在C语言中的应用)
  功 能: 发出一个DOS命令
  用 法: int system(char *command);
  system函数已经被收录在标准c库中,可以直接调用
  程序例:
  #include <stdlib.h>
  #include <stdio.h>
  int main(void)
  {
  printf("About to spawn and run a DOS command\n");
  system("dir");
  return 0;
  }
  又如:system("pause")可以实现冻结屏幕,便于观察程序的执行结果;system("CLS")可以实现清屏操作。而调用color函数可以改变控制台的前景色和背景,具体参数在下面说明。
  例如,用 system("color 0A"); 其中color后面的0是背景色代号,A是前景色代号。各颜色代码如下:
  0=黑色 1=蓝色 2=绿色 3=湖蓝色 4=红色 5=紫色 6=黄色 7=白色 8=灰色 9=淡蓝色 A=淡绿色 B=淡浅绿色 C=淡红色 D=淡紫色 E=淡黄色 F=亮白色
  (注意:Microsoft Visual C++6.0 支持system)
  举例
  看了下面实例,相信你会对学到更多system在C程序设计中的应用。
  例一:
  C语言调用DOS命令实现定时关机
  #include<stdio.h>
  #include<string.h>
  #include<stdlib.h>
  int print()
  {
  printf(" ╪╪╪╪╪╪╧╧╧╧╧╧╧╧╪╪╪╪╪╪\n");
  printf("╔═══╧╧C语言关机程序 ╧╧═══╗\n");
  printf("║※1.实现10分钟内的定时关闭计算机 ║\n");
  printf("║※2.立即关闭计算机  ║\n");
  printf("║※3.注销计算机  ║\n");
  printf("║※0.退出系统  ║\n");
  printf("╚═══════════════════╝\n");
  return 0;
  }
  void main()
  {
  system("title C语言关机程序");//设置cmd窗口标题
  system("mode con cols=48 lines=25");//窗口宽度高度
  system("color 0B");
  system("date /T");
  system("TIME /T");
  char cmd[20]="shutdown -s -t ";
  char t[5]="0";
  print();
  int c;
  scanf("%d",&c);
  getchar();
  switch(c)
  {
  case 1:printf("您想在多少秒后自动关闭计算机?(0~600)\n");scanf("%s",t);system(strcat(cmd,t));break;
  case 2:system("shutdown -p");break;
  case 3:system("shutdown -l");break;
  case 0:break;
  default:printf("Error!\n");
  }
  system("pause");
  exit(0);
  }
  例二:
  用C语言删除文件,例如文件的位置是d:\123.txt
  用system()函数执行windows命令。
  #include <stdlib.h>
  #include <stdio.h>
  int main(void)
  {
  system("del d:\\123.txt");
  return 0;
  }
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-09-18
system

--------------------------------------------------------------------------------
Executes a shell command
#include <stdlib.h>
int system ( const char *s );
The system( ) function passes a command line addressed by the pointer argument s to an operating system shell. If s is a null pointer, the function returns true (a nonzero value) if a command processor is available to handle shell commands, and 0 or false if not.
How the system executes a command, and what value the system( ) function returns, are left up to the given implementation. The command may terminate the program that calls system( ), or have unspecified effects on its further behavior.
Example
if ( system( NULL ))
system( "echo \"Shell: $SHELL; process ID: $$\"");
else
printf( "No command processor available.\n" );
This example is not portable, but on certain systems it can produce output like this:

这是我在chinaunix网站上曾经看到过的一个帖子,从这里应该能看出来是包含在stdlib.h中的。
第2个回答  2013-09-18
system函数是包涵在stdlib.h头文件里的。
“我在tc3.0++里就算无头文件都可以用,他是C语言的语法吗?”这是编译器的问题,不是语法问题本回答被网友采纳
第3个回答  2013-09-18
这个是包括在stdlib.h这个文件上的。。。。你主要可能是因为编译器的关系 在vc等上面都要这个头文件的
相似回答