fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int j;
  6. printf("antes\n");
  7. for(j = 0; j >= 4; j--){
  8. printf("%d\n", j);
  9. }
  10. printf("depois");
  11. return 0;
  12. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
antes
depois