Tell me what are static member functions?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any problem with the following: char *a=NULL; char& p = *a;?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Describe the process of creation and destruction of a derived class object?
When you overload member functions, in what ways must they differ?
Should the member functions which are made public in the base class be hidden?
Which one is a preferred language C or C++? Why?
i want the NIC programmer-B model papaer pattren, iwant the all model papers?
Why can you not make a constructor as const?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What are the manipulators in c++?
How does class accomplish data hiding in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?