view test/tmp.c @ 48:8575ec496cd4

jump with overrupped struct (first code)
author kono
date Sun, 16 Feb 2003 01:01:06 +0900
parents d35df41eac69
children 64a4e3789fd2
line wrap: on
line source


main0(ac,av)
{
return ac;
}

main(ac,av)
int ac;
char *av[];
{
    register int i;
    register char *p;

    p = av[1];
    if (!p) return;
    i = p[1];
    p = p+i;
    printf("%d %s\n",i,p-i);
}