home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / multiply.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  603b  |  25 lines

  1.  /* Program to calculate the product of two numbers. */
  2.  #include <stdio.h>
  3.  int a,b,c;
  4.  int product(int x, int y);
  5.  main()
  6.  {
  7.      /* Input the first number */
  8.      printf("Enter a number between 1 and 100: ");
  9.      scanf("%d", &a);
  10.  
  11.      /* Input the second number */
  12.      printf("Enter another number between 1 and 100: ");
  13.      scanf("%d", &b);
  14.  
  15.      /* Calculate and display the product */
  16.      c = product(a, b);
  17.      printf ("\n%d times %d = %d", a, b, c);
  18.  }
  19.  
  20.  /* Function returns the product of its two arguments */
  21.  int product(int x, int y)
  22.  {
  23.      return (x * y);
  24.  }
  25.