How can an improvement in the quality of software be done by try/catch/throw?
No Answer is Posted For this Question
Be the First to Post Answer
Is arr and &arr are same expression for an array?
What is time_t c++?
how is returning structurs from functions?Show an eg?
Distinguish between a # include and #define.
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 the use of endl in c++?
Can I run c program in turbo c++?
Why is it necessary to use a reference in the argument to the copy constructor?
What is a protocol class?
Do class declarations end with a semicolon? Do class method definitions?
What is data binding in c++?
Describe the role of the c++ in the tradeoff of safety vs. Usability?