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

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     int num;
  6.     
  7.     num = 1000;
  8.     
  9.     printf("%d is the value of num", num);
  10. }
  11.  
  12.