IDE for C++ developers [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
What is the most popular IDE for C++? And library for windows?
What is about QT?

The best IDE for c++ is visual studio(if you are working in windows), but if you want to use Qt, QtCreator is also nice. but i can't get what do you mean "A library for windows"!

Related

socket.io with c++? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Please tell me can I wrote some c++ console application and connect on some node.js server(on nodester example) which using socket.io? Some (C/C++) -> (node.js/socket.io) library? Thanks
boost::asio based c++ socket.io client
Yes, it is possible. FWIW, an open-source project does this in Objective-C, which should at least give you some ideas on how to do it in C/C++.

HOW to understand custom drawn ? Which tools can I use? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to know the tools that beautiful UI programs using?
You're going to have to ask a better question. What platform are you targeting? What framework are you using? "Beautiful" is in the eye of the beholder.

What's the most recommended cross platform C++ library? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is there something like jQuery that works the same in all browsers in the c/c++ world that will work consistently in all platforms?
Are you talking about for GUI elements? Qt is very popular.
Gnulib is intended to act as a facade for the system's native libc.
Depends on what you want to do. Boost is one of the most used one.

What are the c++ commands for case speaker? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm trying to make a MIDI song using c++. What are the commands?
If your platform is just "C++", then there are no such "commands". The C++ standard does not specify sound at all.

opening file stored on internet via c++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
need a small program to learn basics on how to open a file stored on net for reading via c++.
One relatively easy way is to use libcurl: http://curl.haxx.se/