Why main function is special in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is lambda expression c++?
Which is the best c++ compiler for beginners?
What does catch(…) mean?
What is constructor in C++?
What is the difference between *p++ and (*p)++ ?
wap to accept 10 numbers & display the number of odd and even numbers??
Explain the operation of overloading of an assignment operator.
Explain the difference between 'operator new' and the 'new' operator?
What is pointer in c++ with example?
Is there a c++ certification?
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"?
Is string data type in c++?