fork download
  1. #include <stdio.h>
  2.  
  3. int jumble (int x, int y) {
  4. x = x + 3 * x % y ;
  5. return x ; }
  6. int main ( ) {
  7. int x=3, y=7 ; y = jumble (x, y) ; x = jumble (y, x) ;
  8. printf ("%d \n", x) ; return 0 ; }
  9.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
5