fork download
  1. #include <stdio.h>
  2.  
  3. typedef int customer_id;
  4. typedef int action_code;
  5.  
  6. int change_customer(customer_id x, action_code y)
  7. {
  8. return 1;
  9. }
  10.  
  11. int main(void) {
  12. customer_id a;
  13. action_code b;
  14.  
  15. change_customer(b, a);
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 9280KB
stdin
Standard input is empty
stdout
Standard output is empty