answersLogoWhite

0

What is the WinMain in C plus plus?

User Avatar

Anonymous

10y ago
Updated: 8/17/2019

WinMain is the conventional name for the user-defined entry point of a Windows application (as well as other frameworks). The framework essentially provides a standard main function which processes the command line arguments, initialises the framework and then invokes WinMain. Everything up to that point is essentially handled by the framework itself and is of no concern to the framework programmer. Thus WinMain represents the user-defined entry point and is synonymous with the main function of a generic console application.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is the entry point of a Windows program?

The WinMain function is the entry point of a Windows program.This is the signature of the WinMain function:int WINAPI WinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPSTR lpszArgument, int nCmdShow)


Can a C program be written without main?

Yes. Windows GUI application are the tipical examples, their execution starts with 'WinMain', not 'main'


What is b plus b plus b plus c plus c plus c plus c?

b+b+b+c+c+c+c =3b+4c


What is c plus c plus 2c plus c plus c equal?

c + c + 2c + c + c = 6c


B plus b plus b plus c plus c plus c plus c equals?

b + b + b + c + c + c + c = 3b + 4c


Symplify c plus c plus c plus c?

4c


What is c plus c plus c plus c plus c?

c + c + c + c + c = 5 * c.


Primary and secondary key in c and c plus plus?

There are no "primary and secondary keys" in c and c plus plus.


What is c plus C plus C answer in algebra?

3c


What is the different between turbo c plus plus and unix c plus plus?

There is no such thing as 'unix C++'.


What to Do if Macros does not exist in C and C plus plus?

They do exist in C and C++.


Does c plus plus need a function named main?

If this is a homework assignment, you really should try to answer it on your own first, otherwise the value of the reinforcement of the lesson due to actually doing the assignment will be lost on you.Every C or C++ program (but see below) needs one and only function named main. The standard prototype is int main (int argc, char *argv[]); The run-time library looks for main as its first function to call after startup initialization.In a Microsoft Windows application, the entry point is winmain. Operation is similar, though parameters are different.