What is the difference between *p++ and (*p)++ ?


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

Post New Answer

More C++ General Interview Questions

Explain what is class definition in c++ ?

0 Answers  


Write about an iterator class?

0 Answers  


What return value must conversion operators have in their declaration?

0 Answers  


What are c++ data types?

0 Answers  


Why was c++ made?

0 Answers  






class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list

2 Answers   Quark,


What is the stack?

5 Answers   IBM, ICICI,


What is the difference between a definition and a declaration?

0 Answers  


Is there anything you can do in C++ that you cannot do in C?

1 Answers  


What is size of empty class object

5 Answers   CA,


What are the benefits of c++?

0 Answers  


Explain the virtual inheritance in c++.

0 Answers  


Categories