What is the difference between f and F
        Posted  
        
            by Ram
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ram
        
        
        
        Published on 2010-05-30T12:38:27Z
        Indexed on 
            2010/05/30
            12:42 UTC
        
        
        Read the original article
        Hit count: 279
        
In the following code, the const are defined using two different ways.
     const float KS = 0.001F;
     const float WW = 0.001f;
Is there any difference between F and f?
© Stack Overflow or respective owner