|
Related Questions |
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?
|
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 |
 |
What is the difference between Mutex and Binary semaphore?
|
View Answer |
 |
What methods can be overridden in Java?
|
View Answer |
 |
What is the Standard Template Library (STL)?
|
View Answer |
 |
Can you be bale to identify between Straight- through and Cross- over cable wiring? and in what case do you use Straight- through and Cross-over?
|
View Answer |
 |
How many ways are there to initialize an int with a constant?
|
View Answer |
 |
What can I safely assume about the initial values of variables which are not explicitly initialized?
|
View Answer |
 |
What is RTTI?
|
View Answer |