What is called array?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap two strings without using any third variable ?
Is there any problem with the following: char *a=NULL; char& p = *a;?
List the merits and demerits of declaring a nested class in C++?
Describe protected access specifiers?
What is a .lib file in c++?
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?
Why do we use classes in c++?
Is c++ fully object oriented?
What is the difference between static global and global ?
Is c++ harder than java?
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 a tree in c++?