Give 10 points of differences between C & C++.
No Answer is Posted For this Question
Be the First to Post Answer
What does '\r' and '\b' mean? Please explain with example.
Why is null pointer used?
What do you mean by inheritance in c++? Explain its types.
What does ctime() do?
What is split a string in c++?
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 do you mean by ‘void’ return type?
What is a storage class?
Where do I find the current c or c++ standard documents?
What kind of problems can be solved by a namespace?
Where is atoi defined?
What do c++ programmers do?