What is low level language in simple words?
No Answer is Posted For this Question
Be the First to Post Answer
What are the four main data types?
When is a template better solution than a base class??
Does c++ support exception handling?
What is ifstream c++?
What is an inclusion guard?
give me some class & objects examples?
In how many ways we can initialize an int variable in C++?
Explain the benefits of proper inheritance.
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; }
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
What is setiosflags c++?
What is purpose of new operator?