fork download
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. #include <assert.h>
  4.  
  5. int main(void) {
  6. char null = '\0';
  7. assert (isalpha(null) || isdigit(null));
  8. return 0;
  9. }
Runtime error #stdin #stdout #stderr 0s 2140KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog: prog.c:7: main: Assertion `((*__ctype_b_loc ())[(int) ((null))] & (unsigned short int) _ISalpha) || ((*__ctype_b_loc ())[(int) ((null))] & (unsigned short int) _ISdigit)' failed.