what does the following statement mean?
int (*a)[4]
No Answer is Posted For this Question
Be the First to Post Answer
How to implement is-a and has-a class relationships?
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.
How do you sort a sort function in c++ to sort in descending order?
What is encapsulation in c++?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
Explain how the virtual base class is different from the conventional base classes of the opps.
Explain operator overloading.
the first character in the variable name must be an a) special symbol b) number c) alphabet
What is srand c++?
What is the difference between method overloading and method overriding in c++?
explain the reference variable in c++?
What are static type checking?