What is the extraction operator and what does it do?
No Answer is Posted For this Question
Be the First to Post Answer
what are Operators and explain with an example?
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is using namespace std in cpp?
what is oops
What is an arraylist 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; }
Write about the members that a derived class can add?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
What is the difference between Pointer and a Reference? When you would use them?
What are the various arithmetic operators in c++?
Define a nested class.