AW> Whats the C command that you use to "label something so you can use goto
to
AW> to it?
Well, if it is avoidable, do NOT use a GOTO staement, but heres a GOTO
example.
------------------------------------------------------------------------------
void main(void) {
printf("I am going to use a goto now.\n");
goto position;
printf("You will not see this message !\n");
position:
printf("Nice to see you, did you enjoy your trip ?\n");
}
-=- DANIEL HEBBERD -=-
--- Renegade v666 dMp
---------------
* Origin: dMp ][, Man can not live on Toons alone... (3:774/750)
|