answersLogoWhite

0


Best Answer

In C and in C++, the ++ operator means to increment. C++ was intended to be the next version, i.e. the incremental next step, of C, hence the use of the ++ operator.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why are there 2 plus sign in c plus plus and Why not a single plus sign?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Factor c2 plus 4c plus 4?

(c + 2)(c + 2) or (c + 2)2


How do you solve this equation c plus c plus c equals 6?

c+c+c=6 C=2 Because: 2+2+2=6


In C plus plus what sign do all preprocessor directives start with?

all preprocessor directives start with #(hash) symbol in both c & c++


Factor the following trinomials c squared plus 4c plus 4?

c2 + 4c + 4 =(c + 2) (c + 2)= (c + 2)2


What do you call the combination of variables and functions into a single object in C plus plus?

A singleton.


What is the answer to b plus b plus c plus c in algebra?

2b + 2c or 2(b + c)


How many C-C single bonds in 2-methyl-propane?

There would be 3 C-C single bonds in 2-methyl propane.


Is c plus c plus c equals 6 isolated?

If: 3c = 6Then: c = 2


What is (a-b plus c)2?

The Pythagoream Thereom is a^2 + b^2 = c^2. Written out it is a squared plus b squared equals c squared.


What is 1 over C plus 2 over 4?

It is (C + 2)/(2*C)


What is the solution of this linear system 4x plus y-1 y-2x plus 3 A -2 7 B -2 -7 C 2 7 D 2 -7?

The solution to the liner system 4x plus y-1 y-2x plus 3 A -2 7 B -2 -7 C 2 7 D 2 -7 is 0. This is how the problem is solved 4*x*plus*y-1*y-2*x*plus*3*A -2*7*B -2 -7*C*2*7*D*2 -7=0. The asterisk * is a sign for multiplication.


Write a c plus plus programme to illustrate single inheritance?

struct A {}; // base class struct B : A {} // derived class (single inheritance).