What are the basics of local (auto) objects?
No Answer is Posted For this Question
Be the First to Post Answer
What is while loops?
When should you use global variables?
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 cin clear () in c++?
What are abstract data types in c++?
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
What is the difference between a constructor and a destructor in C++?
What is the difference between const and constexpr?
What is the difference between inline functions and macros?
Define a conversion constructor?
What are the main characteristics of C++ as a programming language?
Can a class be static in c++?