What are the two types of polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
What is an inline function in c++?
Does c++ cost money?
What does the linker do?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Enter n no. of element and delete value from desire position
What is difference between n and endl in c++?
What is a c++ class?
Explain the static storage classes in c++.
What is constant in c++ with example?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
Why the usage of pointers in C++ is not recommended ?
Explain the extern storage classes in c++.