Can VisualStudio Code be used to debug C++ programs? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am looking for a cross OS compatible IDE which supports IntelliSense (checking availability of functions & argument docs) and debugging for C and C++ (Supports watch and breakpoints)

Yes.
VSCode – C/C++ extension is to provide cross-platform C++ developers a great tool of choice for their edit-build-debug cycle with the same consistent look and feel across all platforms.

Related

GCC/G++ compiler settings GUI [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for some frontend (GUI, Graphical user interface) for GCC and G++ which is oriented towards helping me setup the compiler in a user-friendly way.
I am not looking for a development environment, and the code edition is being made on a dedicated text editor (VS Code, Atom, whatever). I only want to compile my source and header files and change any compiler setting.
You can use Make to properly compile your files through a configuration (Makefile), but there is no GUI.
For more information : make documentation

Examples of small and middle opensource projects on GTK+ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Can you tell me where i can see a source of examples GTK+ projects (non gtkmm). It is desirable that be used Glade for design UI. I want to see how to organize program and get experience.
You've got plenty of projects in GTK+ in many languages on the GNOME development servers.

Turbo C++-like editor [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
do you know if there is some Borland's Turbo C++ clone text-only IDE or something similar for Unix boxes?
I want to have a C++ IDE (editor/compiler/debugger) in text mode available through my console terminal.
There is an application very similar, although not a clone, to Borland editors: FTE.
http://setedit.sourceforge.net/ is like a maintained version of RHIDE. I had to patch a couple of lines to make it build on Ubuntu 12.10 though.

Good replacement for Qt [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Is there any replacement for Qt that can be ported on Windows and Linux or good for Linux that supports OpenGL? I have to write OpneGL C++ application and I want to try something better if exists.
IMHO, if you do c++ GUI applications portable across Windows/Linux/Mac, Qt is your best shot.
Other popular toolkits are wx and GTK.

Tools to view/diagram function-call hierarchies for C or C++ source files in OSX [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any good source-code analyses tools for OSX. I am particularly interested in tools that are capable of diagramming function-call hierarchies for C and C++ source files.
You might take a look at doxygen
doxygen can do this and a lot more.