Answer Posted / greg
#include <math.h>
static void checkinfinit(double x)
{
if (isinf())
{
printf("Infinite\n");
}
}
int main(int argc, char **argv, char **envp)
{
checkinfinite(1.0);
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Do pointers take up memory?
What is the use of a static variable in c?
What is function and its example?
When should the register modifier be used? Does it really help?
How can I call a function with an argument list built up at run time?
How can I find out how much free space is available on disk?
What is far pointer in c?
How can I read in an object file and jump to locations in it?
Why doesnt this code work?
What are the application of void data type in c?
Explain high-order bytes.
explain what is a newline escape sequence?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What do you mean by a local block?
What are the loops in c?