If a header file is included twice by mistake in the program, will it give any error?
What and all can a compiler provides by default?
How many different levels of pointers are there?
What is an adaptor class or Wrapper class?
Is there something that we can do in C and not in C++?
Out of fgets() and gets() which function is safe to use and why?
When is dynamic checking necessary?
What is the size of a vector?
What is a "Copy Constructor"?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
How to create a pure virtual function?
What are the uses of c++ in the real world?
What are different types of typecasting supported by C++