|
Related Questions |
View Answer |
|
Define a way other than using the keyword inline to make a function inline.
|
View Answer
|
|
How can a '::' operator be used as unary operator?
|
View Answer
|
|
What are the main underlying concepts of object orientation?
|
View Answer
|
|
What do u meant by "SBI" of an object?
|
- C++ Interview Questions & Answers">
View Answer
|
|
Differentiate persistent & non-persistent objects?
|
View Answer
|
|
What do you meant by active and passive objects
|
View Answer
|
|
What is meant by software development method?
|
View Answer
|
|
Why does the function arguments are called as "signatures"?
|
View Answer
|
|
What is Memory alignment??
|
View Answer
|
|
When are temporary variables created by C++ compiler?
|
View Answer
|
|
When do use "const" reference arguments in function?
|
- C++ Interview Questions & Answers">
View Answer
|
|
What are storage qualifiers in C++ ?
|
View Answer
|
|
What are C++ storage classes?
|
View Answer
|
|
What is conversion constructor?
|
View Answer
|
|
What are all the implicit member functions of the class? Or what are all the functions which compiler implements for us if we don't define one.??
|
View Answer
|
|
When are copy constructors called?
|
View Answer
|
|
What is a Makefile?
|
View Answer
|
|
What does extern mean in a function declaration?
|
View Answer
|
|
Will it execute or not?
C++ Interview Questions and Answers
(Continued from previous question...)
Will it execute or not?
void main() { char *cptr = 0?2000; long *lptr = 0?2000; cptr++; lptr++; printf(” %x %x”, cptr, lptr); }Will it execute or not?
|
View Answer
|
|
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array? How can you find the nodes with repetetive data in a linked list?
|
View Answer
|