0
C++
As someone new who has no prior background knowledge of the language, how many core inputs are there? How would someone go about finding such information? Basically did the inventor, programmer create a blueprint manual of how C++ works?
3 Answers
+ 1
The creator of c++ Bjarne Stroustrup, has admitted that he doesn't know every part of the language himself. This is partly due to updates to c++ are decided by a committee.
This link is a combination of his faq and more.
https://isocpp.org/faq
In terms of finding information on any specific feature look here:
https://en.cppreference.com/w/
Otherwise carry on with the c++ tutorial here, or any other if you prefer.
Ask if you get stuck on anything specific.
+ 5
Not sure what you mean by core inputs. SoloLearn limits your input to the start of the program running.
But maybe you could look into online C++ documentation.
0
Thank you