sir i want to study the c++ course but ino what is the
qualification and the study methode please reply more
details in c++
Read C++ by Dissection
by Ira Pohl
my answer surety %=50%
_Nithin Devang
| Is This Answer Correct ? | 1 Yes | 1 No |
What is a template in c++?
What is the best c++ book for beginners?
Definition of class?
Why do we use constructor?
Mention the purpose of istream class?
What is heap sort in c++?
What does it mean to declare a member variable as static?
What is dynamic and static typing?
What is #include iostream?
What is the best c++ compiler for windows 10?
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; }
Explain "const" reference arguments in function?