fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. const char *s = "1";
  5. puts(s);
  6.  
  7. if (*(s + 1) == 0) puts("YUP!");
  8. }
  9.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
1
YUP!