Which operations are permitted on pointers?


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

Post New Answer

More C++ General Interview Questions

Explain the use of this pointer?

0 Answers  


Define the process of error-handling in case of constructor failure?

0 Answers  


What are the five basic elements of a c++ program?

0 Answers  


Why is c++ still popular?

0 Answers  


How the compilers arranges the various sections in the executable image?

1 Answers  






Is dev c++ free?

0 Answers  


Is c++ faster than c?

0 Answers  


write a programme to get a character and thier ASCII value

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,


Name the debugging methods that are used to solve problems?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

0 Answers  


Categories