home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / dtx9303 / ms_c_7 / hotline / _mk_fp.cpp next >
Encoding:
C/C++ Source or Header  |  1993-06-04  |  344 b   |  12 lines

  1. // =========================================================
  2. //                        _MP_FP.CPP
  3. // =========================================================
  4. #include <stdio.h>
  5. #include <dos.h>
  6. void main(void)
  7. {
  8.    printf("Das Resultat ist %Fp, ",
  9.           _MK_FP(0xB800, 0 << 1));
  10.    printf("aber es sollte B800:0000 sein\n)";
  11. }
  12.