What is c++ stringstream?
No Answer is Posted For this Question
Be the First to Post Answer
CAN U SAY WHICH PROGRAMING LANGUAGE IS USED BY DOCTORS....?
Should I learn c or c++ first?
Write a program using display() function which takes two arguments.
What is array give example?
Explain pass by value and pass by reference.
When do we run a shell in the unix system? How will you tell which shell you are running?
What is a container class?
Can comments be nested?
State the difference between pre and post increment/decrement operations.
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 c++ namespace?
Evaluate !(1&&1||1&&0) a) Error b) False c) True