What are the steps in the development cycle?
No Answer is Posted For this Question
Be the First to Post Answer
What are the vectors in c++?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
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; }
Is c++ proprietary?
Does c++ support exception handling?
Describe the role of the c++ in the tradeoff of safety vs. Usability?
difference between macro and function?
How many storage classes are available in C++?
What is the purpose of templates in c++?
How do I download c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Explain unexpected() function?