What is the use of :: operator in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between c++ and java.
Is string data type in c++?
How do you invoke a base member function from a derived class in which you’ve overridden that function?
How the keyword struct is different from the keyword class in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
Explain the static member function.
Why c++ is better than c language?
What are the advantages of using a pointer?
Name four predefined macros.
What is meant by entry controlled loop? What all C++ loops are exit controlled?
How to demonstrate the use of a variable?
What are the advantages of using pointers in a program?