Since in the code below struct fulist gets allocated its memory automatically,
(144 bytes) as the Printf confirms, why do i have a crash on the 2d line of main ?
struct fulist { char curdir[140]; LONG dirtime; }*fls; int main(void) ///char *dirname) { Printf("size fulist %ld\n", sizeof(struct fulist)); fls->curdir[0] = 0; //crash }