#include void our_function(){ printf("We're running our function\n"); long int numbers[2]; numbers[0] = 435; numbers[3] -= 9; } int main(){ our_function(); printf("If this prints out, you lose!\n"); printf("This is the end of the program\n"); return 0; }