home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / example.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-24  |  194 b   |  17 lines

  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <proto/dos.h>
  4.  
  5. int main(void)
  6. {
  7.    int i=42;
  8.    double d$,d;
  9.  
  10.    d=i/2;
  11.    d$=2;
  12.    printf("i = %d, d=%2.1f\n",i,d);
  13.    Delay(60);
  14.    return(0);
  15. }
  16.  
  17.