我一直试图使用Visual Studio运行我的C ++代码,但是找不到解决方法。我遇到了名为C/C++ Compile Run的扩展名,它很容易使用。我也使用标准的C/C++ Microsoft Extension。
然后我通过运行以下代码对其进行了尝试:
#include<iostream>
using namespace std;
int main(){
cout<<"hello";
char x[10];
cout<<"\nEnter a string please: ";
gets(x);
puts(x);
}
我忘了包含stdio.h
,但是使用C / C ++ Compile Run扩展成功编译了代码。它给出了以下输出:
hello Enter a string please: string string
但是,我没有包括stdio.h
。有没有什么办法解决这一问题?还是我应该尝试另一种方式来编译我的C ++代码?