What is c++ array?
No Answer is Posted For this Question
Be the First to Post Answer
What is long in c++?
How does com provide language transparency?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is the difference between method and message?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Is ca high or low level language?
Write about a nested class and mention its use?
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?
What is encapsulation in c++?
How are pointers type-cast?
Explain the difference between 'operator new' and the 'new' operator?
Is it possible for the objects to read and write themselves?