How does work in c++?
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 the history of c++?
What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
What is the basic difference between C and C++?
What is the type of this pointer in c++?
What is while loops?
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; }
Why was c++ made?
What is compilation?
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
What is data types c++?