fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x = 100;
  5. printf("Before: %d\n", x);
  6.  
  7. x =\
  8. \
  9. \
  10. \
  11. \
  12. \
  13. \
  14. \
  15. \
  16. - 0;
  17.  
  18. printf("After: %d\n", x);
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5356KB
stdin
Standard input is empty
stdout
Before: 100
After: 0