Subset of C language with tree interpreter and bytecode compiler + VM.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

10 rader
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;
}