"Micah J. Cowan" wrote:

> On Fri, Mar 21, 2003 at 02:45:37PM -0800, Tim Riley wrote:
> >

<snip>

>   void **memory;
>   memory = calloc(1, sizeof *memory);
>   if (*memory) ...
>

vs.

PERSON *person = (PERSON *)calloc( 1, sizeof( PERSON ) );

if ( person->zip_code )
{
    printf( "The zip code is populated with %s\n",
            person->zip_code );
}

My assertion is that the sky is blue, and your argument is
no, the grass is green.

<snip>

_______________________________________________
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech

Reply via email to