How do you differentiate between overloading the prefix and postfix increments?


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

Post New Answer

More C++ General Interview Questions

How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?

0 Answers  


Explain the use of this pointer?

0 Answers  


What language is a dll written in?

0 Answers  


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

0 Answers  


Which is the best c++ compiler?

0 Answers  






write a program that takes 5 digit no and calculate 2 power that no and print it.

3 Answers  


what is object?

7 Answers  


What is the difference between containment and delegation?

0 Answers  


Do we have private destructors?

12 Answers   Symphony, TCS,


What is microsoft c++ redistributable?

0 Answers  


What is conversion constructor?

2 Answers   TCS,


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Categories