please dont rip this site

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: 2024/4/24 02:59,
TOP NEW HELP FIND: 
13.58.112.1:LOG IN

 ©2024 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://www.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 www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .