How many keywords are used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write about an iterator class?
How do you add an element to a set in c++?
What is an inline function in c++?
Is there any difference between int [] a and int a [] in c++?
What are the types of pointer?
Differentiate between structure and class in c++.
How the endl and setw manipulator works?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
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 new() and malloc()?
How many types of modularization are there in c++?
Are iterators pointers?