What is #include cmath?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
why we cant create array of refrences
What is the difference between interpreters and compilers?
What is the prototype of printf function?
What is the difference between method overloading and method overriding in c++?
What do you mean by “this” pointer?
Write a C++ Program to Multiply two Numbers
what is multi-threading in C++?
What is static class data?
What is the full form of c++?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
What is an incomplete type in c++?