Explain the isa and hasa class relationships.
Explain differences between alloc() and free()?
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?
Will this c++ program execute or not?
Describe private, protected and public?
Explain differences between new() and delete()?
What is c++ namespace?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Will the following program execute?
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
Differences between private, protected and public and give examples.
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How can I call fortran?
How can I discover how many arguments a function was actually called with?