what is a class? Explain with an example.
When there is a global variable and local variable with the same name, how will you access the global variable?
Difference between const char* p and char const* p?
Can we use this pointer in a class specific, operator-overloading function for new operator?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Difference between pointer to constant vs. Pointer constant
What is c++ library?
What are the four partitions in which c++ compiler divides the ram?
What is the difference between a class and a structure in C++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Explain the different access specifiers for the class member in c++.
What is the basic of c++?
How const functions will be treated by compiler?