What is the best c++ book?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program? Why?
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
What is null and void pointer?
Write a program using display() function which takes two arguments.
Do you know the use of vtable?
How to defines the function in c++?
What is constructor in C++?
What is implicit conversion/coercion in c++?
Write a program to find the Factorial of a number
What are virtual functions and what is its use?
What is private public protected in c++?
What are static and dynamic type checking?