What is ifstream c++?


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

Post New Answer

More C++ General Interview Questions

Define pre-condition and post-condition to a member function in c++?

0 Answers  


What is null and void pointer?

0 Answers  


sizeof- is it functioning statically or dynamically?

2 Answers  


When does a 'this' pointer get created?

0 Answers  


class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData

2 Answers   Quark,






What are the various operations performed on stack?

0 Answers  


What is a set in c++?

0 Answers  


Is python better than c++?

0 Answers  


How Virtual functions call up is maintained?

2 Answers  


Write is a binary search tree? Write an algo and tell complexity?

0 Answers   Axtria,


What is the cout in c++?

0 Answers  


Difference between a copy constructor and an assignment operator.

0 Answers  


Categories