#include #include int main(){ int a = 5; int b = 10; int c = 15; *(&b + 1) = 100; // 1 is 1 int, or 4 bytes. The compiler will add 4 printf("a = %d, b = %d, c = %d\n", a, b, c); int *bigspace = malloc(sizeof(int) * 1000000); bigspace[0] = 100; free(bigspace); return 42; }