C++ / hello, world / clするときに/EHscオプションをつける。

#include <iostream>
using namespace std;

int main(){
    cout << "hello, world" << endl;
    system("pause");
    return 0;
}

C++は、clするときに/EHscオプションをつける。
f:id:ti-nspire:20181115045739p:plain