STL (140)
OOPS (873)
C++ General (2409) In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
1066How the programmer of a class should decide whether to declare member function or a friend function?
1115We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
1074How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
1075
What is super in oop?
How can we access protected and private members of a class?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
Is arr and &arr are same expression for an array?
What is class definition in c++ ?
How a pointer differs from a reference?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What is a far pointer? where we use it?
What is meant by iomanip in c++?
Can I learn c++ in a week?
What are the basics of local (auto) objects?
Why is swift so fast?
Why interface is used?
What character terminates all character array strings a) b) . c) END
How do you declare A pointer to function which receives an int pointer and returns a float pointer