Can I create my own functions in c++?
Explain polymorphism?
What is the difference between structure and class?
Explain how overloading takes place in c++?
How Virtual functions call up is maintained?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Write the program for fibonacci in c++?
Do the names of parameters have to agree in the prototype, definition, and call to the function?
can output 5 students using one dimensional array
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
How can you link a c++ program to c functions?
Why use of template is better than a base class?
Write a Program to find the largest of 4 no using macros.