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
What is code reusability in c++?
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.
write a program to insert an element into an array
When should we use container classes instead of arrays?
What is scope resolution operator in c++ with example?
In a class only declaration of the function is there but defintion is not there then what is that function?
What is difference c and c++?
How do you declare A pointer to a function which receives nothing and returns nothing
describe private access specifiers?
What is the benefit of c++?
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.
What is a v-table?