sharethis:
Recently i had started writing apps for windows.....n what a crap work.....
below is a code just for generating a small message box
#include windows.h
INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, PSTR, INT iCmdShow)
{
MessageBox
(
NULL,
TEXT("You've started programming Windows"),
TEXT("Message Output Box"),
1
);
return 0;
}
Before you leave, please promote this article with your favorite bookmarking site using the Share/save button! AND DO please give your valuable comment
0 comments