udaykumar1997

my first win32 prog

Oct 18th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <windows.h>
  2.  
  3. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  4.     LPSTR lpCmdLine, int nCmdShow)
  5. {
  6.     MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
  7.     return 0;
  8. }
Add Comment
Please, Sign In to add comment