What is meaning of in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How should runtime errors be handled in c++?
Differentiate between a constructor and a destructor in c++.
Types of storage and scope of each type
how to connect with oracle 9i with server in socket program in c/c++
What is c++ hash?
What are punctuators in c++?
Explain Text Manipulation Routines?
What are the types of STL containers?
Write about the access privileges in c++ and also mention about its default access level?
Explain the differences between private, public and protected and give examples.
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; }
Why do we use templates?