#include#include int main(){ printf ("holle.\n");getch();}不是没运行,是运行后关闭了
那是正常的。一般可以在main函数结尾添加system(“pause”)或者getchar()。
程序运行完了当然要关掉了,加个函数。#include void main(){ printf ("holle.\n") getchar();}