1 2 3 4 5 6 7
#include <string.h> int main(int argc, char **argv) { char x[10]; memset(x, 0, 10); int res = x[argc * 10]; // BOOOM return res; }