C Functions

C modf() Function

The modf() function in C is a standard library function that breaks a floating-point number into its fractional and integral parts. It is part of the C standard library (math.h). This function is useful for separating the fractional and integral components of a floating-point number.

C log10() Function

The log10() function in C is a standard library function that computes the common logarithm (base 10) of a given number. It is part of the C standard library (math.h). This function is useful for performing logarithmic calculations with base 10.

C log() Function

The log() function in C is a standard library function that computes the natural logarithm (base ( e )) of a given number. It is part of the C standard library (math.h). This function is useful for performing logarithmic calculations.

C ldexp() Function

The ldexp() function in C is a standard library function that generates a floating-point number from a significand and an exponent. It is part of the C standard library (math.h). This function is useful for constructing floating-point values from their component parts, especially in numerical applications requiring precise control over floating-point arithmetic.

C exp() Function

The exp() function in C is a standard library function that computes the exponential value of a given number, i.e., ( e^x ), where ( e ) is the base of natural logarithms (approximately 2.71828). It is part of the C standard library (math.h). This function is useful for performing exponential calculations.

C asinh() Function

The asinh() function in C is a standard library function that computes the area hyperbolic sine (inverse hyperbolic sine) of a given value. It is part of the C standard library (math.h). This function is useful for performing inverse hyperbolic trigonometric calculations.

C acosh() Function

The acosh() function in C is a standard library function that computes the area hyperbolic cosine (inverse hyperbolic cosine) of a given value. It is part of the C standard library (math.h). This function is useful for performing inverse hyperbolic trigonometric calculations.

C tanh() Function

The tanh() function in C is a standard library function that computes the hyperbolic tangent of a given value. It is part of the C standard library (math.h). This function is useful for performing hyperbolic trigonometric calculations.

C sinh() Function

The sinh() function in C is a standard library function that computes the hyperbolic sine of a given value. It is part of the C standard library (math.h). This function is useful for performing hyperbolic trigonometric calculations.

C cosh() Function

The cosh() function in C is a standard library function that computes the hyperbolic cosine of a given value. It is part of the C standard library (math.h). This function is useful for performing hyperbolic trigonometric calculations.

C atan() Function

The atan() function in C is a standard library function that computes the arc tangent (inverse tangent) of a given value. It is part of the C standard library (math.h). This function is useful for performing trigonometric calculations involving angles and their inverses.

C acos() Function

The acos() function in C is a standard library function that computes the arc cosine (inverse cosine) of a given value. It is part of the C standard library (math.h). This function is useful for performing trigonometric calculations involving angles and their inverses.

C tan() Function

The tan() function in C is a standard library function that computes the tangent of a given angle. It is part of the C standard library (math.h). This function is useful for performing trigonometric calculations involving angles.

C sin() Function

The sin() function in C is a standard library function that computes the sine of a given angle. It is part of the C standard library (math.h). This function is useful for performing trigonometric calculations involving angles.

C cos() Function

The cos() function in C is a standard library function that computes the cosine of a given angle. It is part of the C standard library (math.h). This function is useful for performing trigonometric calculations involving angles.

C strerror() Function

The strerror() function in C is a standard library function that returns a pointer to the textual representation of the current errno value. It is part of the C standard library (string.h). This function is useful for obtaining a human-readable string that describes an error code.

C strstr() Function

The strstr() function in C is a standard library function that locates the first occurrence of a substring in a string. It is part of the C standard library (string.h). This function is useful for finding the position of a substring within a string.

C strrchr() Function

The strrchr() function in C is a standard library function that locates the last occurrence of a specified character in a string. It is part of the C standard library (string.h). This function is useful for finding the position of the last occurrence of a character within a string.

C strpbrk() Function

The strpbrk() function in C is a standard library function that locates the first occurrence of any character from a set of characters in a string. It is part of the C standard library (string.h). This function is useful for finding the position of any character from a set of characters within a string.

C strchr() Function

The strchr() function in C is a standard library function that locates the first occurrence of a specified character in a string. It is part of the C standard library (string.h). This function is useful for finding the position of a character within a string.

C memchr() Function

The memchr() function in C is a standard library function that searches for the first occurrence of a specified character in a block of memory. It is part of the C standard library (string.h). This function is useful for locating a specific byte in a memory block.

Scroll to Top