Monday, March 10, 2014

Hello World Equivalent in WIndows API

//HelloBlog.CPP

#include <windows.h>

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,PSTR szCmdLine, int iCmdShow)
{
MessageBox (NULL, TEXT ("Hello, Welcome to Know My C++ BLOG!"), TEXT ("KNOW MY C++ BY SREEYUSH"), 0) ;
return 0 ;
}

No comments:

Post a Comment