State two differences between C and C++.
No Answer is Posted For this Question
Be the First to Post Answer
What is the history of c++?
What are the differences between malloc() and calloc()?
Explain about vectors in c ++?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
What are the various access specifiers in c++?
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"?
why c++ is not called strictly d super set of c?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What is the difference between mutex and binary semaphore?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement
is throwing exception from a constructor not a good practice ?