Language Ccpp Cref Examples Goto.c

/ ************************************************************************
 *
 * Purpose: To perform a division checking for divide by zero.
 *	 This program demonstrates the goto statement.
 *
 * Author: M.J. Leslie
 * Date: 11-Feb-95
 *
 ************************************************************************/
#include <stdlib.h>
main()
{
 char data[100];
 double num1, num2;
 printf(" Please enter a number ==> " );
 gets(data);
 num1 = atof(data);
 printf(" Please enter a number ==> " );
 gets(data);
 num2 = atof(data);
					/* Stop a divide by zero with
					 * the goto statement.		*/
 if ( num2 == 0.0 ) goto end_prog;
 printf(" %4.2f divided by %4.2f is %4.2f\n", num1, num2, num1/num2);
 end_prog:
 printf(" Program ended\n");
 
}

file: /Techref/language/ccpp/cref/EXAMPLES/goto.c, 0KB, , updated: 1997年4月21日 09:52, local time: 2025年9月17日 07:43,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/Techref/language/ccpp/cref/EXAMPLES/goto.c"> language ccpp cref EXAMPLES goto</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /