structure contains int, char, float how it behaves for big
endian and little endian?
What is the oldest programming language?
Why main function is special in c++?
write a program to add two numbers without using an arithmetic operator.
How do c++ struct differs from the c++ class?
Is c++ low level?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
What is anonymous object in c++?
Where do I find the current c or c++ standard documents?
Is c++ built on c?
Write a corrected statement in c++ so that the statement will work properly. x + y=z;
When there is a global variable and local variable with the same name, how will you access the global variable?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };