#!/usr/local/bin/tcc -run #include char *fizz(int n){ return n % 3 ? "" : "Fizz"; } char *buzz(int n){ return n % 5 ? "" : "Buzz"; } char *fizzbuzz(char *buf, int n){ strcpy(buf, fizz(n)); strcat(buf, buzz(n)); if (!strlen(buf)) sprintf(buf, "%d", n); return buf; } #include int main(void) { float d_posi= 13936.1156; float m_posi ; float temp1; float temp2; temp1=d_posi/100; temp2=m_posi % (float)100; m_posi=temp1+(temp2/60); printf("%f",m_posi); return 0; }