fork download
  1. #include <stdio.h>
  2.  
  3. enum direction { DOWN, RIGHT, UP, LEFT };
  4.  
  5. void funcaoExemplo(enum direction var) {
  6. if(var == DOWN) printf("%d", RIGHT); //só para testar
  7. }
  8.  
  9. int main(void){
  10. funcaoExemplo(DOWN);
  11. return 0;
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/50363/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
1