What is "strstream" ?
Answer / sv
strstream is the class that specializes iostream to use a
strstreambuf for input and output with arrays of characters
in memory.
The class strstream provides functionality to read and
write to an array in memory. It uses a private strstreambuf
object to control the associated array. It inherits from
basic iostream and therefore can use all the formatted and
unformatted output and input functions.
| Is This Answer Correct ? | 3 Yes | 0 No |
What are raw sockets, where they are efficient?
How many types of modularization are there in c++?
What is implicit conversion/coercion in c++?
What is oop in c++?
How does c++ sort work?
How would you use qsort() function to sort an array of structures?
Write about an iterator class?
What are the advantages of c++? Explain
What are punctuators in c++?
List the types of polymorphism in c++?
What is the need of a destructor? Explain with the help of an example.
What is "strstream" ?