home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / tutorial / 132.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-27  |  213 b   |  17 lines

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     char ch;
  6.     float f;
  7.     double d;
  8.     
  9.     ch = 'X';
  10.     f = 100.123;
  11.     d = 123.009;
  12.     
  13.     printf("ch is %c, ", ch);
  14.     printf("f is %f, ",f);
  15.     printf("d is %f", d);
  16. }
  17.