float1.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       float1.c (188B)
       ---
            1 #include <stdio.h>
            2 
            3 int Prob2Score(float, float);
            4 
            5 int main(int argc, char **argv)
            6 {
            7         float f;
            8         f = 10.0;
            9 
           10         int i;
           11         for(i=0; i<4; i++)
           12                 Prob2Score(1, 1);
           13         printf("%f\n", f);
           14         return 0;
           15 }