#include        <stdio.h>

#include        <dos.h> /* for delay */

#include        "..\include\globals.h"

main()
   {
   int          i;
   RADAR        radar;
   

   while(!kbhit())
      {
      printf("az = %8.2f el = %8.2f\r",AZ,EL);
      fflush(stdout);
      }
   
   readradar("",&radar);
   }



