Is c the same as c++?
No Answer is Posted For this Question
Be the First to Post Answer
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
Give 2 examples of a code optimization?
What is polymorphism and its type in c++?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
What do you mean by inheritance in c++?
What is a static element?
write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement
What is the best c++ book?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
How to declaring variables in c++?
Can you pass a vector to a function?