关于编辑器和系统的问题,古人指点
我用DEVC++编辑的时候,在运行程序的 时候,成功是没问题,但是 就是显示的DOC运行结果一闪即逝,看不到,怎么解决啊 ,英文版本,不太会设置DEV,高手指点一下
getch()
getchar()
getche()
.....
随便加一个输入函数让它停留一下就行了
例如:
#include <stdio.h>
#include <conio.h>
int main(void)
{
printf("out!") ;
getch() ;
}