Huh?
I get this error;
1>.\Hullo.cpp(6) : error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [5]' to 'LPCWSTR'
Here is the source...
#include <IOSTREAM>
#include <WINDOWS.H>
int main()
{
MessageBox (0, "text" ,"caption", 0);
std::cout << "Hello World\n";
return 0;
}
Which looks okay to me..
It compiles and runs ok without ;
MessageBox (0, "text" ,"caption", 0);