What is void pointer in c++ with example?
const char * char * const What is the differnce between the above two?
How does list r; differs from list r();?
Can union be self referenced?
write a program that takes 5 digit no and calculate 2 power that no and print it.
What is friend class in c++ with example?
What is the difference between ++ count and count ++?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
What is size of empty class object
How do you define a class in c++?
Please post the model question paper of hal?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What are the benefits of c++?