what features did c get from c++? [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 features were added to c that were originally in c++?
When where they added and for what reason(what where the pro/con arguments)?
How do they differ in c as compared to c++?
Did the features originate in c++ or in another language?
examples(feel free to expand on):const,Function prototypes, implicit exit(0);

I don't think it would be useful to repeat the content of Bjarne's paper

Related

Should unique_ptr be used for class member pointers? [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.
Looking for some opinions on this as it's unclear in reading the C++ 11 documentation.
Absolutely. This takes care of the rule of three for you.

Call a function from a prototype in 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 11 years ago.
How to call a function from a prototype in c++?
Any suggestions?
see example ...
http://msdn.microsoft.com/en-us/library/a5s9345t(v=vs.80).aspx
I would rather suggest you to get an introductory C++ book from this list and read it properly :
The Definitive C++ Book Guide and List
Then you'll know what you're asking. You need to study a book first, before asking such questions!

Multiple inheritance in 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 12 years ago.
As you know, C++ allows multiple inheritance. But, would it be a good programming approach to use multiple inheritance or it should be avoided?
Thanks.
In general, it's not needed and can make your code more complex.
But there are cases where it's useful. As long as it's useful and isn't causing your code to become unmanageable, I see no reason to avoid it.

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/