Subset of C language with tree interpreter and bytecode compiler + VM.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

10 行
192 B

// out-of-bounds-access
#include <stdio.h>
int main() {
int array[5] = { 0, 1, 2, 3, 4 }, i = 4;
printf("%d\n", array[i++]);
printf("%d\n", array[i++]); // out of bounds
return 0;
}