|
Im trying to run the below c++ program in visual studio, its given an error as Native' has exited with code 0 (0x0)....can anyone tell me the solution for this.
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World! ";
cout << "I'm a C++ program";
return 0;
}
|