Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to use isfinite() function to check if the given floating point number has finite value in C

1 Answer

0 votes
#include <stdio.h>     
#include <math.h>
 
int main(int argc, char **argv)
{	
	printf("isfinite(NAN) = %d\n", isfinite(NAN));
    printf("isfinite(INFINITY) = %d\n", isfinite(INFINITY));
    printf("isfinite(0.0) = %d\n", isfinite(0.0));
	printf("isfinite(1.0 / 0.0) = %d\n", isfinite(1.0 / 0.0));
    printf("isfinite(0.0 / 2.0) = %d\n", isfinite(0.0 / 2.0));
    printf("isfinite(1.0) = %d\n", isfinite(1.0));
	printf("isfinite(-1.0 / 0.0) = %d\n",isfinite(-1.0 / 0.0));
	
    return 0;
}

// non-zero value if x is finite, zero otherwise

/*
run:
  
isfinite(NAN) = 0
isfinite(INFINITY) = 0
isfinite(0.0) = 1
isfinite(1.0 / 0.0) = 0
isfinite(0.0 / 2.0) = 1
isfinite(1.0) = 1
isfinite(-1.0 / 0.0) = 0

*/

 



answered Mar 19, 2016 by avibootz
...