I want to know what is the difference between windows form application, win32application ana console, i know that both the windows form application and win32 application is gui
windows form applications are applications that use the graphical programming interface frameworks such as .NET, DELPHI, or MFC instead of directly calling the win32 API.
On the other hand, win32 application usually deals directly with windows api to create applications from bottom up.
And console applications don't have any graphical interface. Only command line window is used for data input and result output.