|
Related Questions |
View Answer |
|
Who to know whether system uses big endian or little endian format and how to convert among them?
|
View Answer
|
|
How is function itoa() written?
|
View Answer
|
|
Error — what it does?
|
View Answer
|
|
Which way of writing infinite loops is more efficient than others?
|
View Answer
|
|
malloc(sizeof(0)) will return — valid pointer
|
View Answer
|
|
a+++b -> (a++)+b
|
View Answer
|
|
Operations involving unsigned and signed — unsigned will be converted to signed
|
View Answer
|
|
++*ip increments what? it increments what ip points to
|
View Answer
|
|
Can you have constant volatile variable?
|
View Answer
|
|
#define cat(x,y) x##y concatenates x to y. But cat(cat(1,2),3) does not expand but gives preprocessor warning. Why?
|
View Answer
|
|
What is the output of printf("
abcd
ef"); -> ef
|
View Answer
|
|
When you inherit a class using private keyword which members of base class are visible to the derived class?
|
View Answer
|
|
Can u have inline virtual functions in a class?
|
View Answer
|
|
Order of constructor and destructor call in case of multiple inheritance?
|
View Answer
|
|
Is java a pure object oriented language? Why?
|
View Answer
|
|
How would you find out the no of instance of a class?
|
View Answer
|
|
What are the 4 different types of inheritance relationship?
|
View Answer
|
|
Multiple inheritance - objects contain howmany multiply inherited ancestor?
|
View Answer
|
|
Difference between object oriented and object based languages?
|
View Answer
|
|
Scope of static variables?
|
View Answer
|