What is stream and its types in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the basic structure of a c++ program?

0 Answers  


What is vectorial capacity?

0 Answers  


What is pointer to array in c++?

0 Answers  


int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?

11 Answers   HCL, Mphasis,


Why struct is used in c++?

0 Answers  






Why is c++ awesome?

0 Answers  


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);

2 Answers  


Difference between a homogeneous and a heterogeneous container

0 Answers  


What are the basic data types used in c++?

0 Answers  


How do you differentiate between overloading the prefix and postfix increments?

0 Answers  


What is an incomplete type?

1 Answers  


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

0 Answers  


Categories