fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int num = 5;
  5.  
  6. if (num > 0) {
  7. // goto positive;
  8. }
  9.  
  10. printf("This will not be printed.\n");
  11.  
  12. positive:
  13. printf("The number is positive.\n");
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
This will not be printed.
The number is positive.