Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?


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

Post New Answer

More C++ General Interview Questions

What is code reusability in c++?

0 Answers  


How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.

15 Answers   Satyam,


write a program to insert an element into an array

26 Answers   TCS,


When should we use container classes instead of arrays?

0 Answers  


What is scope resolution operator in c++ with example?

0 Answers  






In a class only declaration of the function is there but defintion is not there then what is that function?

5 Answers   Hughes,


What is difference c and c++?

1 Answers  


How do you declare A pointer to a function which receives nothing and returns nothing

0 Answers  


describe private access specifiers?

0 Answers  


What is the benefit of c++?

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,


What is a v-table?

0 Answers  


Categories