#guide/course for cpp

17 messages · Page 1 of 1 (latest)

polar kraken
#

I need course/guide that will teach me basics of cpp, I know C baisics so i need only standard librery and object oriented cpp. Also some video/article that show differences between C and cpp would be helpfull.

lilac plazaBOT
#

When your question is answered use !solved or the button below to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.

#
How to Learn C++ Programming

We generally recommend a good book to learn the necessary fundamentals:

To actually write and run C++ code, you will need a compiler, editor, and debugger. We strongly recommend to start out using an IDE, which will provide all these tools for you:

<:microsoft:1165512917047853127> Windows
  • [Visual Studio](#1165492293810257920 message)
  • CLion
<:tux:1165505626894520361> Linux
<:apple:1165508607798943754> Mac
mossy zealot
#

so there isnt just simple "learn these 3-4 things new in C++ and you are good to go"

polar kraken
mossy zealot
#

C++ tries too hard to stay backward compatible with C

polar kraken
#

with C89 not all features from newer C versions will work

mossy zealot
polar kraken
lilac plazaBOT
#
Asking Your Question in the Right Channel

Welcome to Together C & C++. We have many channels on various topics, and encourage you to explore the channel list. Please ask your question in the appropriate channel:

Getting Programming Help
  • #1013107104678162544, #cpp-help-text for help with C++
  • #1013104018739974194, #c-help-text for help with C
  • #tooling if you can't get your code to run
  • the #360691955031867392 section for help with specific topics like algorithms
Showing off and Discussing Existing Code (any language)
  • #general-technical to discuss your projects
  • #c-cpp-discussion to discuss C and C++
  • #1078717238678409369 to get feedback
  • #1014328785685979136 to just show off
polar kraken
#

@mossy zealot whats the command for cpp resorces?

mossy zealot
lilac plazaBOT
#

@polar kraken Has your question been resolved? If so, type !solved :)

turbid grove
#

There is a Wikipedia page on the subject which might help.

https://en.wikipedia.org/wiki/Compatibility_of_C_and_C%2B%2B

The C and C++ programming languages are closely related but have many significant differences. C++ began as a fork of an early, pre-standardized C, and was designed to be mostly source-and-link compatible with C compilers of the time. Due to this, development tools for the two languages (such as IDEs and compilers) are often integrated into a s...