What is the difference between while and do while loop?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between C and C++.
What is wrapper class in c++?
What is the difference between Char a[ ]=”string” and char *a=”String”
What's c++ used for?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Explain Text Manipulation Routines?
In c++, what is the difference between method overloading and method overriding?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What are the various storage classes in C++?
How do we balance an AVL Tree in C++?
which operator is used for performing an exponential operation a) > b) ^ c) none
What do you mean by early binding?