I have console application in c. I want to convert into window application, kindly guide me so that I can make it possible.
+3
A:
That is a huge topic that requires a separate discussion. You may want to learn some GUI toolkit. Qt or wxWidgets will do (though they are written in C++, not C). If you're into C crossplatform development, you may take a look at GTK+. If you are planning only to write programs for Windows, you may learn Windows API. Whichever way you choose, there's a lot of docs available, but each and every way requires a lot of study and cannot be explained here.
Roman D
2010-03-17 09:26:28
@Suma can you kindly explain little bit more, i have tried this WinMain but its only hide the console doesn't show the window.
Arman
2010-03-17 09:32:07
You have to create a window in order to have it shown :)
Roman D
2010-03-17 09:32:42