VS2010调试C程序,总是一闪而过

时间:2023-03-09 16:04:54
VS2010调试C程序,总是一闪而过

今天在vs2010调试C语言程序的时候,一闪而过,百度上搜了三种解决的方法,都是可以用的。

1.   #include<iostream>

  using namespace std;

  int main() {

    //将你的代码放在这里

    system("pause");

    return 0;

  }

2.   # include<stdio.h>
  # include<stdlib.h>
  int main()
  {
    你的代码内容
    system("pause");
    return 0;
  }

3.编写完代码后,点击菜单栏的“调试”—"开始执行(不调试)"即可。

以上三种方式,本人自己实践过,均可用。