What is the difference between the indirection operator and the address of oper-ator?


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

Post New Answer

More C++ General Interview Questions

Is it legal in c++ to overload operator++ so that it decrements a value in your class?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Difference between overloaded functions and overridden functions

0 Answers  


Is there finally in c++?

0 Answers  


What is cin clear () in c++?

0 Answers  






Is c++ the hardest programming language?

0 Answers  


Can I learn c++ as my first language?

0 Answers  


What is overloading unary operator?

0 Answers  


What are the types of container classes?

0 Answers  


Write a program to add three numbers in C++ utilizing classes.

0 Answers   TCS,


How would you use qsort() function to sort an array of structures?

0 Answers  


What does scope resolution operator do?

0 Answers  


Categories