Answer Posted / 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 |
Post New Answer View All Answers
Where is atoi defined?
Do we have to use initialization list in spite of the assignment in constructors?
What are the advantages of inheritance in c++?
What is the use of :: operator in c++?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What does new in c++ do?
What is #include sstream?
How do you find out if a linked-list has an end?
What is function declaration in c++ with example?
What is vectorial capacity?
What is the difference between an enumeration and a set of pre-processor # defines?
What is bubble sort c++?
What are libraries in c++?
Describe the process of creation and destruction of a derived class object?