Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watmath!clyde!rutgers!topaz.rutgers.edu!ron From: ron@topaz.rutgers.edu.UUCP Newsgroups: comp.lang.c Subject: Re: goto's and switch statements -- mild proposal Message-ID: <13874@topaz.rutgers.edu> Date: Tue, 11-Aug-87 11:17:25 EDT Article-I.D.: topaz.13874 Posted: Tue Aug 11 11:17:25 1987 Date-Received: Thu, 13-Aug-87 01:18:51 EDT References: <855@tjalk.cs.vu.nl> <2683@hoptoad.uucp> <916@haddock.ISC.COM> Organization: Rutgers Univ., New Brunswick, N.J. Lines: 16 foo() { switch(a) { default: dodefault(); } goto default; switch(b) { default: hithere(); } } What happens here if you can "goto default" or "goto case"?