Where must the declaration of a friend function appear?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ pass by reference or value?
Explain the uses of static class data?
What is the benefit of learning c++?
Write about the members that a derived class can add?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Do you know about C++ 11 standard?
0 Answers Agilent, ZS Associates,
Is std :: string immutable?
CAN U SAY WHICH PROGRAMING LANGUAGE IS USED BY DOCTORS....?
What is void pointer in c++ with example?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What is the return value of the insertion operator?
Write a function to find the nth item from the end of a linked list in a single pass.