answersLogoWhite

0


Best Answer

theriyadhu

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Advantages of manipulator in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is manipulator in c plus plus language?

Manipulators are functions that change the formatting parameters on character streams.


What is the name of the 'endl' operator in c plus plus and its purpose?

endl is not an operator. Is is a stream manipulator. It inserts and end-of-line into the stream. cout << "This is a test" << endl << "This is also a test" << endl; Gives you ... This is a test This is also a test


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.


What is the name of the 'setw' operator in c plus plus and its purpose?

setw() is not an operator, it is a parameterized stream manipulator. It sets the width of the field in the output stream which is about to be inserted. cout << setw(5) << 9 << endl; Gives you ....9 Where each dot represents one space.


Advantages of C over C plus plus and java?

C can be faster than C++ programs, and definitely faster than Java, since Java is primarily interpreted. C is also somewhat less rigid in definitions as well, not as tightly structured as either C++ or Java can be.


When was Manipulator EP created?

Manipulator EP was created in 1988.


When was Manipulator - album - created?

Manipulator - album - was created in 2020-12.


Main advantage of 'c' against 'c plus plus ' langugae?

C does not have any major advantages over C++ because any C program can be compiled under C++ with relatively minor modification. However, the C compiler works a bit quicker than that of C++ since there is no need to cater for object-oriented programming in C.


What is b plus b plus b plus c plus c plus c plus c?

b+b+b+c+c+c+c =3b+4c


What is c plus c plus 2c plus c plus c equal?

c + c + 2c + c + c = 6c


Advantages of C plus plus over c?

Everything you can do in C you can do in C++, with relatively minor variations in syntax. You can also incorporate C-style code directly. However, the main advantage is that C++ incorporates object-oriented programming, which allows highly complex data structures to be constructed far more easily than with C alone.


B plus b plus b plus c plus c plus c plus c equals?

b + b + b + c + c + c + c = 3b + 4c