What is endl?
What is the output of printf("%d")?
58 Answers CTS, HCL, Infosys, TCS, Winit, Wipro,
What are separators in c++?
What are different types of polymorphism supported by C++
How can a called function determine the number of arguments that have been passed to it?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Write about the retrieval of n number of objects during the process of delete[]p?
Define Virtual function in C++.
What is size of a empty class?
7 Answers Microsoft, Tata Elxsi, Wipro,
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Is c++ the hardest language?
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
What is main function in c++ with example?