home *** CD-ROM | disk | FTP | other *** search
/ Teach Yourself Game Programming in 21 Days / TYGAMES_R.ISO / source / day_08 / addl.c next >
Encoding:
C/C++ Source or Header  |  1994-06-17  |  178 b   |  18 lines

  1.  
  2. #include <math.h>
  3. #include <stdio.h>
  4.  
  5.  
  6.  
  7. void main(void)
  8. {
  9.  
  10. long x,y,z;
  11.  
  12. // add the longs and see what assembly language is generated
  13.  
  14. z = x+y;
  15.  
  16. } // end main
  17.  
  18.