answersLogoWhite

0

Is C plus plus more powerful than C?

User Avatar

Anonymous

12y ago
Updated: 8/18/2019

You might as well ask if C is more powerful than assembly language. No it is not. It is simply easier to work with. The same goes for C++. It is not any more powerful than C, but it is much easier to work with. Its power lies in the fact you can produce more complex, more robust and more scalable solutions that much quicker than you can with C alone. But not all projects require the full might of C++, and quite often I revert to C-style coding simply to get the job done. C++ and OOP in particular is not a magic bullet for every problem.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you add more than two numbers in C plus plus?

sum = a + b + c;


Is it easy to learn C plus plus rather than C?

C++ is a superset of C, with some things changed, so it is more correct to say that learning C is easier than learning C++.


Why c plus plus is more user friendly?

More user friendly than what? Please restate the question.


Which people grew more powerful dueto trade rather than from winning battles?

c. the Phoenicians


Why is c plus plus language more portable than c language?

They are equally portable. Conditional compilation is supported by both languages.


Can a function be called from more than one place in a program in c plus plus?

In C and C++, as well as in many (all?) languages, a function can be called from more than one place in a program. That's the purpose of functions - to encapsulate pieces of code that are needed in more than one place in the program.


10 equals c plus d c is one more than d what is the value of c?

5 and a half


What is 6 more than c?

In algebraic terms, "6 more than c" can be represented as c + 6. This means you are adding 6 to the value of c. For example, if c = 4, then 6 more than c would be 4 + 6, which equals 10. So, the expression "6 more than c" simply means adding 6 to the value of c.


Is vitamin C made in laboratories more powerful than natural vitamin c from fruit and vegetables?

Yes. Anything that is obtained naturally is much more potent.


Which one has more jobs java or c plus plus?

C++.


If a is less than b and c is less than d then a plus c is less than b plus d?

Correct.


What are the Advantages of c over c plus plus?

There are no advantages of C over C++ as such. Everything you can do in C you can also do in C++. However, by taking advantage of C++ object oriented programming, generic programming and template meta programming as well as C-style coding, you can produce more efficient machine code far more easily and more quickly than with C alone.