用VS2010编写C程序时,最后的输出语句只是屏幕闪了一下,屏幕没有结果,解决方法

时间:2022-03-12 19:13:43

#include<stdio.h>
    int main()
{
  printf("*******************\n\n");
  printf("  Very Good!\n\n  ");
  printf("*******************\n\n");
  return 0;

}


加上#include <stdlib.h> 

       system("pause"); 

#include<stdio.h>
#include <stdlib.h> 
    int main()
{
  printf("*******************\n\n");
  printf("  Very Good!\n\n  ");
  printf("*******************\n\n");
   system("pause"); 
  return 0;

}