What is lvalue?
No Answer is Posted For this Question
Be the First to Post Answer
What is the basic concept of c++?
Write about the local class and mention its use?
What is a list c++?
i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????
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
Where are setjmp and longjmp used in c++?
If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?
What is a far pointer? where we use it?
Define copy constructor.
Which function should be used to free the memory allocated by calloc()?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is the header file for setw?