Name:
Anonymous
2011-12-21 15:17
Inspired by whitespace. Instead of whitespace, everything is ;
Name:
Anonymous
2011-12-21 19:53
void push(int x)
{ if (stack_idx >= STACK_SIZE-1)
{ printf(";Stack;Overflow;!;\n;", STACK_SIZE)
; exit(1)
;
} stack[++stack_idx] = x
;
}