Users Pricing

blog

home / developersection / blogs / creating window program in vc by using sdk

Creating Window program in VC by using SDK

Amit Singh 6494 23 Oct 2011 Updated 18 Sep 2014

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.

 


Amit Singh

Other


1 Comments