fork download
  1. #include <stdio.h>
  2.  
  3. #define TSC_PERIOD (1000 /1024)
  4. #define W_TSC_PERIOD (1000.0/1024)
  5. int main(void) {
  6.  
  7. int a = 100*TSC_PERIOD;
  8. double f = 100*W_TSC_PERIOD;
  9.  
  10. printf ("a = %3d f = %6f\n", a,f);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4188KB
stdin
Standard input is empty
stdout
a =   0 f = 97.656250