Describe exception handling concept with an example?
No Answer is Posted For this Question
Be the First to Post Answer
What is a mutable member?
Explain dangling pointer.
Difference between class and structure.
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; }
List out some of the object-oriented methodologies?
What is virtual destructors? Why they are used?
What is the difference between strcpy() and strncpy()?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
What is binary search in c++?
What relational operators if statements in c++?
Is c++ high level programming language?