Does dev c++ support c++ 11?
No Answer is Posted For this Question
Be the First to Post Answer
Explain differences between new() and delete()?
What is an incomplete type in c++?
How does java differ from c and c++?
What kind of problems can be solved by a namespace?
Differentiate between a deep copy and a shallow copy?
explain the reference variable in c++?
diff between pointer and reference in c++?
Why cout is used in c++?
What is the difference between a shallow copy and a deep copy?
What is virtual function? Explain with an example
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 capacity in vector in c++?