What is array in c++ pdf?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ fully object oriented?
What are the methods of exporting a function from a dll?
What is meant by const_cast?
What is the use of class in c++?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
What is the best free c++ compiler for windows?
What is a constructor in c++ with example?
What does the ios::ate argument do?
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 swift better than c++?
Mention the ways in which parameterized can be invoked.
What are shallow and deep copy?