From: Morten E. <mo...@si...> - 2003-06-11 06:07:19
|
* Leonard mckinley: > > [snip] > char name [ 64 ]; > > strcpy( buffer, "[" ); > strcpy( name, "why did the chicken cross the road" ); > [snip] * Dan Kegel: > > Say, isn't name uninitialized there? No, initialization happens with the strcpy( name, "why did the chicken cross the road" ); statement. Morten |