#include #include void foo() { int thearray[4]; // Add only one line, right here, that makes the "You win" line run } int main() { int a = 5; foo(); if(a == 5) return 0; printf("You win!"); return 0; }