dev c++
Ok
------------------------------------------
#include <iostream>
using namespace std;
int main()
{
cout << "hello c++" << endl;
return 0;
}
//////////////////////////////////////////
VS C++
OK
--------------------------------------
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << "hello c++" << endl;
return 0;
}
////////////////////////////////////
VS C++
ERROR
------------------------------------
#include <iostream>
using namespace std;
int main()
{
cout << "hello c++" << endl;
return 0;
}
-------------------------------------
VS C++
ERROR2
-------------------------------------
#include <iostream>
#include "stdafx.h"
using namespace std;
int main()
{
cout << "hello c++" << endl;
return 0;
}