What are the two shift operators and what are their functions?
No Answer is Posted For this Question
Be the First to Post Answer
what is COPY CONSTRUCTOR and what is it used for?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is the history of c++?
What is Object Oriented programming.what is the difference between C++ and C?
What is lambda expression c++?
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
Why iomanip is used in c++?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
Explain shallow copy?
what is polymorphism?