How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
No Answer is Posted For this Question
Be the First to Post Answer
What is pure virtual function? Or what is abstract class?
What is size of null class?
What are the various access specifiers in c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
If I is an integer variable, which is faster ++i or i++?
What do you mean by const correctness?
What is the purpose of template?
What is late binding c++?
What is polymorphism & list its types in c++?
Difference between class and structure.
What is an explicit constructor?
Why do we use templates?