C语言中关于 system("PAUSE");的问题。

问一,system("PAUSE"); 这句是什么意思?
问二,为什么有 system("PAUSE"); 这句的时候,在VC++ 6.0中运行后,在“编译 compile”会提示
E:\XP\zijieshu.c(25) : warning C4013: 'system' undefined; assuming extern returning int 的警告。
而在 组建 build 中这行的警告却“消失”?
问三,要如何做,在有 system("PAUSE"); 的前提下,在“编译 compile ” 时候,
E:\XP\zijieshu.c(25) : warning C4013: 'system' undefined; assuming extern returning int 的警告。
也“消失”?

system("PAUSE");
是调用 DOS 命令 PAUSE.
包含头文件
#include <stdlib.h>
------------
问二, 你的编译器安装或配置问题。我的编译器没有问题,即使 没 包含 头文件 stdlib.h 也没问题。
问三, 加头文件:
#include <stdio.h>
#include <stdlib.h>
温馨提示:答案为网友推荐,仅供参考