Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to learn C/C++ GUI Windows/Linux programming. Which IDE is more suitable? If I go with Visual Studio.NET, what are the pros and cons of it.

Any IDE that supports both Windows and Linux?

share|improve this question
It hasn't been called Visual Studio.NET in at least 3 versions. You can use it to create full unmanaged C++ applications without a single dependency on or reference to the .NET Framework. microsoft.com/visualstudio/en-us – Cody Gray Jan 3 '11 at 8:19

3 Answers

up vote 6 down vote accepted

The Qt Creator IDE works for both Linux and Windows.

If you want a more versatile development environment, Qt can integrate with Eclipse.

share|improve this answer
I don't think Qt Creator integrates with Eclipse (they both do the same thing, i.e. they are both full-fledged IDEs). What exactly do you mean? – rubenvb Jan 3 '11 at 9:09
You're right - I meant to say that Qt integrates with Eclipse, with GUI design tools and all. – mizo Jan 3 '11 at 9:33

I think Qt is best solution for you. It is intuitive, easy to learn GUI library. Also it is cross platform so you can write programs for Windows, Linux, Mac and phones.

For QT coding you can use QTCreator or Visual Studio Plugin for QT(only for Windows :)). For more information go to http://qt.nokia.com

share|improve this answer

VS .Net is by far the bast development environment I've ever used. You can be incredibly productive with it.

share|improve this answer
Can I develop a non-.net variant with it? – RKh Jan 3 '11 at 8:14
Sure, you can develop standard C/C++. – dhaag23 Jan 3 '11 at 18:55
But it won't be platform independent, however a great place to start. – RKh Jan 4 '11 at 16:28
Not true - of course you can write platform independent ANSI C/C++! – dhaag23 Jan 10 '11 at 2:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.