Post Made Community Wiki by Bill the Lizard
show/hide this revision's text 2 fixed formatting of source code
   #include <stdio.h>

   int main() {
         int x = 10;
         int y = ???;
         int z = ???;
         while( x -->> y -->> z )
         {
           printf("%d ", x);
         } 
    }

outputs:

9 8 7

What is the value of y and z?

show/hide this revision's text 1
#include <stdio.h>

int main() {
     int x = 10;
     int y = ???;
     int z = ???;
     while( x -->> y -->> z )
     {
       printf("%d ", x);
     } 
}

outputs:

9 8 7

What is the value of y and z?