blog

Home / DeveloperSection / Blogs / Creating Window program in VC by using SDK

Creating Window program in VC by using SDK

Amit Singh 5617 23-Oct-2011

SDK is acronym for software development kit.  It is a set of tools designed to help c programmers create window application.

Steps for creating windows using SD

  1.  Open vc++ editor
  2. Select new project then choose win32 application.
  3. Select file menu ->New then select C++ source file and give the suitable name
A sample of windows program:
#include <windows.h>
Int_stdcall WinMain(HINSTANCE hins, HINSTANCE hprev, LPSTR lps2,  int ncmdshow)
{
MessageBox(0,”Hello!”,o);
Return 0;
}

Note: Build the program then run it.

 


Updated 18-Sep-2014

Leave Comment

Comments

Liked By