hello,
I am reading a book "Let Us C" by Yashwant Kanetkar.
Book For learning C programming.
In that book towards the end, After done with C Programming, It teaches a lil bit of windows and linux programming.

In windows programming , it started with this code and advised to compile it and see the output before starting to learn about it . (in visual c++ 6.0 standard edition)
The code is :

Code:
#include <windows.h>


int_stdcall WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdline, int nCmdShow)
{
MessageBox (0,"Hello!","Title",0);
return 0;
}
But it gives 3 errors , VC++ doesnt point out those errors , can you help me with it?
Also, suggest me something else better than vc++ for win32 aplication building.