What is a set in c++?
How Virtual functions call up is maintained?
difference between c and c++?
38 Answers Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,
When do we use copy constructors?
Differentiate between an inspector and a mutator ?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Which c++ operator cannot overload?
How did c++ start?
What is a terminating character in c++?
Difference between inline functions and macros?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
How do I make turbo c++ full screen?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];