let a,b,c be three integer numbers.write a c++ program
with a function void rotate 1()such that a->b->c and c->a.



let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a..

Answer / zain

#include <iostream>
using namespace std;
int swap(int,int,int);
int main()
{
int a,b,c;
cout<<" enter 3 number"<<endl;
cin>>a>>b>>c;
swap(a,b,c);
cout<<"in main"<<a<<""<<b<<""<<c<<endl;
return 0;
}

int swap(int i,int j,int w)
{
int t;
t=i;
i=j;
j=w;
w=t;
cout<<"in swap function"<<i<<""<<j<<""<<w<<endl;
return 0;
}

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More C++ General Interview Questions

Difference between struct and class in terms of access modifier.

0 Answers  


What is the Standard Template Library?

1 Answers  


How const int *ourpointer differs from int const *ourpointer?

0 Answers  


What is singleton class in c++?

0 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


What are features of c++?

0 Answers  


Does c++ have string data type?

0 Answers  


Which is best c++ or java?

0 Answers  


How are virtual functions implemented in c++?

0 Answers  


What is a syntax in c++?

0 Answers  


What is namespace std; and what is consists of?

0 Answers  


Describe linked list using C++ with an example.

0 Answers  


Categories