How do you clear a buffer in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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 polymorphism?
What are raw sockets, where they are efficient?
what is the C++
Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
what Is DCS ? what i will get benefit when i did?
What is general form of pure virtual function? Explain?
Where do I find the current c or c++ standard documents?
Can we use struct in c++?
What is pointer with example?
When do you call copy constructors?
What is the difference between cin.read() and cin.getline()?