can somebody please explain difference between those two declarations in the properties of the linker in visual studio 2008( please as simple as possible, I\'m new in the w
CONSOLE: Console window is shown. WINDOWS - program starts without Console window.
Edited, looking at another answers. Notice that /SUBSYSTEM flag doesn't affect the program entry point. Program entry point is defined by /ENTRY linker option. Usually /SUBSYSTEM:CONSOLE has "main" entry point, and /SUBSYSTEM:WINDOWS has "WinMain" entry point. But it is possible, for example, to create GUI application with WinMain entry point and Console window.