Multiple choice technology programming languages

In Win32, an application is created by a call to

  1. Main()

  2. WinMain()

  3. InitInstance()

  4. OnEXecute()

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Win32 programming, the entry point for a Windows application is WinMain(), not main() which is for console applications. InitInstance() is MFC-specific, and OnEXecute() is not a standard Win32 entry point.