What are proxy objects in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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 null pointer and void pointer and what is their use?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is the Maximum Size that an Array can hold?
55 Answers Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,
How to detect memory leaks in c++
Explain the difference between c & c++?
Which sort does c++ use?
How do I run a program in notepad ++?
What is the use of 'using' declaration in c++?
What is c++ programming language?
How to construct virtual constructor
6 Answers CIStems Software, Symphony,
Is there any problem with the following: char *a=NULL; char& p = *a;?