Kategori arşivi: math.h

fmod

2.7.4.4 fmod Declaration: double fmod(double x, double y);Returns the remainder of x divided by y. Range: There is no range limit on the return value. If y is zero, then either a range error will occur or the function will return zero (implementation-defined).

Diğer Matematik Fonksiyonları, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

floor

2.7.4.3 floor Declaration: double floor(double x);Returns the largest integer value less than or equal to x. Range: There is no range limit on the argument or return value.

Diğer Matematik Fonksiyonları, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

fabs

2.7.4.2 fabs Declaration: double fabs(double x);Returns the absolute value of x (a negative value becomes positive, positive value is unchanged). Range: There is no range limit on the argument. The return value is always positive.

Diğer Matematik Fonksiyonları, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

ceil

2.7.4.1 ceil Declaration: double ceil(double x);Returns the smallest integer value greater than or equal to x. Range: There is no range limit on the argument or return value.

Diğer Matematik Fonksiyonları, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

sqrt

2.7.3.8 sqrt Declaration: double sqrt(double x);Returns the square root of x. Range: The argument cannot be negative. The returned value is always positive.

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

pow

2.7.3.7 pow Declaration: double pow(double x, double y);Returns x raised to the power of y. Range: x cannot be negative if y is a fractional value. x cannot be zero if y is less than or equal to zero.

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

modf

2.7.3.6 modf Declaration: double modf(double x, double *integer);Breaks the floating-point number x into integer and fraction components. The returned value is the fraction component (part after the decimal), and sets integer to the integer component. Range: There is no range limit on the argument or … Okumaya devam et

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

log10

2.7.3.5 log10 Declaration: double log10(double x);Returns the common logarithm (base-10 logarithm) of x. Range: There is no range limit on the argument or return value.

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

log

2.7.3.4 log Declaration: double log(double x);Returns the natural logarithm (base-e logarithm) of x. Range: There is no range limit on the argument or return value.

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

ldexp

2.7.3.3 ldexp Declaration: double ldexp(double x, int exponent);Returns x multiplied by 2 raised to the power of exponent. x*2^exponent Range: There is no range limit on the argument or return value.

Exponential, Logarithmic, and Power Functions, Kütüphane, math.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın