Home Forums C Programming help plz………….. Re: Re: help plz…………..

#3640
LenoraRamsey
Participant

Actually, In C float and double has only two differences. one is size. and another one is storage in memory.
float has only single precision. But double has double precision.

So, In your code you are trying to differentiate this. But it gives output as hello because it is equal.
double 0 is equal to float 0.

If you want differentiate float and double try this code.

It will prints hi.

It will prints hello.

I think now you can get the difference.