home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / stmon013.zip / Sample.C < prev    next >
C/C++ Source or Header  |  1999-01-05  |  366b  |  19 lines

  1. /*
  2.  * Sample.C
  3.  * Autor:               Stefan Milcke
  4.  * Erstellt am:         05.01.1999
  5.  * Letzte Aenderung am: 05.01.1998
  6.  *
  7. */
  8.  
  9. #include <stdio.h>
  10. #include "StHealth.h"
  11.  
  12. int main(void)
  13. {
  14.  float t1=StHealthTemperature1();
  15.  float t2=StHealthTemperature2(); 
  16.  float t3=StHealthTemperature3(); 
  17.  printf("T1:%f\tT2:%f\tT3:%f\n",t1,t2,t3);
  18.  return 0;
  19. }