C Tutorial/math.h/nan — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
nan
Item Value Header file math.h Declaratin float nanf(const char *content);double nan(const char *content);long double nanl(const char *content); Return returns a value that is not a number and that contains the string pointed to by content.
#include <math.h>
#include <stdio.h>
int main(void)
{
double f;
f = nan("2.0");
printf("%f " , f);
}