home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day21 / list2101.c < prev    next >
C/C++ Source or Header  |  2002-08-11  |  260b  |  16 lines

  1. /* Inputs a number and displays its square. */
  2.  
  3. #include <stdio.h>
  4. #include "calc.h"
  5.  
  6. int main( void )
  7. {
  8.    int x;
  9.  
  10.    printf("Enter an integer value: ");
  11.    scanf("%d", &x);
  12.    printf("\nThe square of %d is %ld.\n", x, sqr(x));
  13.    return 0;
  14. }
  15.  
  16.