Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:15

0001 #include <stdlib.h>
0002 
0003 int main() {
0004   char *x = (char*)malloc(10 * sizeof(char*));
0005   free(x);
0006   return x[5];
0007 }
0008 
0009