#include #include void foo(){ int fox = 12; printf("This is a line of code\n"); *(&fox + 11) = 142; } int main(){ int a = 746; int b = 92; char buffer[10]; printf("Enter something: "); std::cin >> buffer; foo(); if(b == 92) printf("b is the same as always\n"); else printf("You have exploited the program!\n"); return 0; }