What parameter does the constructor to an ofstream object take?


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

Post New Answer

More C++ General Interview Questions

Can inline functions have a recursion? Give the reason?

3 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


What are the basics of local (auto) objects?

0 Answers  


Will this c++ program execute or not?

0 Answers  


Is c++ a software?

0 Answers  






What are the characteristics of friend functions?

0 Answers  


What is the difference between equal to (==) and assignment operator (=)?

0 Answers  


What are mutator methods in c++?

0 Answers  


Why Pointers are not used in C++?

0 Answers   Global Logic,


What is capacity in vector in c++?

0 Answers  


What are punctuators in c++?

0 Answers  


What is the arrow operator in c++?

0 Answers  


Categories