I have the following code:
int main(){
int a,b,c;
cout<<"Enter a: ";
cin>>a;
cout<<"Enter b: ";
cin>>b;
cout<<"Enter c: ";
cin>>c;
int temp;
int *aPtr = &a, *bPtr = &b, *cPtr = &c;
int *tempPtr = &temp;
*tempPtr = *aPtr;
*aPtr = *bPtr;
*bPtr = *cPtr;
*cPtr = *tempPtr;
cout<<a<<b<<c<<"\n";
system("pause");
return 0;
}
Input:
2 3 4
Output
3 4 2
Expected Output
4 2 3
I am using the same logic of swapping values. What am I doing wrong?
Thank you!
You are getting output according to what code you have written. Correct logic for rotation in this case would be:-
Just go sequentially. Like first store value of c then shift a and b and then restore a so that it would be easy for you to generalize this.