Which header file allows file i/o with streams
a) fileio.h
b) iostream.h
c) fstream.h
No Answer is Posted For this Question
Be the First to Post Answer
What is encapsulation in c++ with example?
What is virtual constructor paradigm?
What will happen if when say delete this ?
What is the best book for c++ beginners?
What is "strstream" ?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
when can we use copy constructor?
Write any small program that will compile in "C" but not in "C++"
why all c++ program must have default constructor?
What is the error in the code below and how should it be corrected?
What is a container class? What are the types of container classes in c++?
Write a corrected statement in c++ so that the statement will work properly. x =+ 7;