zašto ovo vraća rezultat = 0.123398 ,
umjesto normalno x - (int) x = 88.1234 - 88 = 0.1234 ?
    #include <iostream>
    using namespace std;
    int main() {
    float x = 88.1234;
    float dec;
   dec = x - (int) x ;
        cout <<dec <<endl;  // ispisuje 0.123398 ??
        }
 
     
    
    