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
- Open vc++ editor
- Select new project then choose win32 application.
- 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.
Anonymous User
19-Jun-2019Thank You.