What is the insertion operator and what does it do?
Answer / Sunil Kumar Bansel
The insertion operator (<<) in C++ is a binary stream manipulator that takes an output iterator, an insertion point, and an object to be inserted into the sequence container. It appends the content of the object to the container.
| Is This Answer Correct ? | 0 Yes | 0 No |
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
why c++ is not called strictly d super set of c?
What c++ library is string in?
How delete [] is different from delete?
Explain "passing by value", "passing by pointer" and "passing by reference" ?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
What is the difference between new/delete and malloc/free?
Is c# written in c++?
What is function overriding in c++?
Which is better c++ or java?
What is pointer in c++ with example?
When does the c++ compiler create temporary variables?