What is the best c++ book?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the output of the following program? Why?

0 Answers  


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

5 Answers   Quark,


What is null and void pointer?

0 Answers  


Write a program using display() function which takes two arguments.

0 Answers  


Do you know the use of vtable?

0 Answers  






How to defines the function in c++?

0 Answers  


What is constructor in C++?

0 Answers  


What is implicit conversion/coercion in c++?

1 Answers  


Write a program to find the Factorial of a number

0 Answers  


What are virtual functions and what is its use?

1 Answers  


What is private public protected in c++?

0 Answers  


What are static and dynamic type checking?

0 Answers  


Categories