parser - Example C program variables


char 
    *fname = NULL       /* Variable for first name */
    *age;               /* Variable for age string */

int 
    birthdate = 0,      /* Variable for birthdate */
    check = 0;          /* Variable for checbox */

char 
    **desc = NULL;      /* Variable for person description */