I found this in some legacy code.
static char title1[] = "SUMMARY REPORT";
static char title2[] = "PERIOD: ";
...
strcat(title2, "10/10/2011");
This strcat operation results in title1 being overwritten with part of the date string. I was able to reproduce this in a small program, but not with static arrays. I looked at the memory location in the legacy code and the title2 buffer is located just prior to title1. The fix was simple, I just added a length to title2 (which pushed the start of title1 further in memory) to hold the entire date. Why is title2 behind title1 in memory? This is on a SPARC, btw.
title2comes behindtitle1because the compiler put it there. The standard doesn't specify memory layout, and the compiler is free to do it in any order that is easiest for the compiler writers. – Mark Ransom Oct 21 '11 at 15:08