我用vc++6.0写c语言。程序在vc++6.0内运行很正常,但直接打开生成的exe就只闪一下就没反应了

代码如下:#include <stdio.h>void main(){ printf ("holle.尀n")}
2024-11-16 08:46:30
推荐回答(3个)
回答(1):

#include
#include
int main()
{
printf ("holle.\n");

getch();
}

不是没运行,是运行后关闭了

回答(2):

那是正常的。一般可以在main函数结尾添加system(“pause”)或者getchar()。

回答(3):

程序运行完了当然要关掉了,加个函数。
#include
void main()
{
printf ("holle.\n")
getchar();
}