Do class declarations end with a semicolon? Do class method definitions?


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

Post New Answer

More C++ General Interview Questions

Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Explain the isa and hasa class relationships. How would you implement each?

0 Answers  


What is null pointer and void pointer and what is their use?

0 Answers  


Explain abstraction.

0 Answers  


What are the various operations performed on stack?

0 Answers  






What is a constructor and how is it called?

0 Answers  


What are stacks? Give an example where they are useful.

0 Answers  


Which is better c++ or java?

0 Answers  


What do you mean by translation unit in c++?

1 Answers  


How a new operator differs from the operator new?

0 Answers  


In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....

0 Answers   College School Exams Tests, CS,


What are the 2 main types of data structures?

0 Answers  


Categories