Answers for "c program check if a number is a floating point number"

C
1

check if float is integer c

float f = 4.5886;
if (f == (int)f)
     printf("yesn");
else printf("non");
Posted by: Guest on May-10-2021

Code answers related to "c program check if a number is a floating point number"

Code answers related to "C"

Browse Popular Code Answers by Language