What is rvalue?
No Answer is Posted For this Question
Be the First to Post Answer
Why the usage of pointers in C++ is not recommended ?
What is a string example?
How do you decide which integer type to use?
What are the advantages of c++ over c?
Difference between an inspector and a mutator
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
what is the difference between overloading & overriding? give example.
What is an operator in c++?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
What is the difference between inline functions and macros?
What does floor mean in c++?
What do you mean by call by value and call by reference?