// Old stack data may contain information

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void f1()
{
	char s[1024] = "VERY SECRET MESSAGE";
	printf("The secret message is '%s'\n", s);
}

void f2()
{
	char s[1024];
	printf("Function 2 found '%s'\n", s);
}

int main()
{
	f1();
	f2();
}
