Hello all,
I'm starting C++ and wan't to learn for loop. I want the Loop to count down the rotate and print its value until when it equals to value where it terminates. Here is code
int value;
int rotate = 4;
for (value = 0; rotate>value; rotate--; ){
cout<<"Now rotate value is:"<<rotate<<endl;