Why do we use structure in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ platform dependent?
What is c++ coding?
What is a static member?
How do you initialize a string in c++?
What is anonymous object in c++?
What does std :: flush do?
What is the role of C++ shorthand's?
What are c++ redistributables?
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; }
Write a C++ Program to Multiply two Numbers
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What are the advantages of c++?