C Functions

C raise() Function

The raise() function in C is a standard library function that sends a signal to the calling process or thread. It is part of the C standard library (signal.h). This function is useful for generating signals within a program, allowing you to test signal handlers or trigger specific behaviors.

C signal() Function

The signal() function in C is a standard library function that sets a function to handle a particular signal. It is part of the C standard library (signal.h). This function is useful for handling asynchronous events like interrupts, termination requests, and other signals.

C strftime() Function

The strftime() function in C is a standard library function that formats a struct tm time structure as a string according to a specified format. It is part of the C standard library (time.h). This function is useful for converting time data into human-readable strings in various formats.

C gmtime() Function

The gmtime() function in C is a standard library function that converts a time_t value to a tm structure representing Coordinated Universal Time (UTC). It is part of the C standard library (time.h). This function is useful for converting calendar time to a broken-down time representation in UTC.

C ctime() Function

The ctime() function in C is a standard library function that converts a time_t value to a string representing the local time. It is part of the C standard library (time.h). This function is useful for converting a time_t value to a human-readable string.

C time() Function

The time() function in C is a standard library function that returns the current calendar time as a time_t object. It is part of the C standard library (time.h). This function is useful for obtaining the current time for various purposes, such as logging, time-stamping, and time calculations.

C mktime() Function

The mktime() function in C is a standard library function that converts a struct tm representation of calendar time to a time_t value. It is part of the C standard library (time.h). This function is useful for converting broken-down time to calendar time.

C difftime() Function

The difftime() function in C is a standard library function that returns the difference in seconds between two time_t values. It is part of the C standard library (time.h). This function is useful for calculating the elapsed time between two events.

C clock() Function

The clock() function in C is a standard library function that returns the processor time consumed by the program. It is part of the C standard library (time.h). This function is useful for measuring the performance of a program or specific parts of a program.

C toupper() Function

The toupper() function in C is a standard library function that converts a given lowercase letter to its corresponding uppercase letter. It is part of the C standard library (ctype.h). This function is useful for normalizing text by converting all letters to uppercase.

C tolower() Function

The tolower() function in C is a standard library function that converts a given uppercase letter to its corresponding lowercase letter. It is part of the C standard library (ctype.h). This function is useful for normalizing text by converting all letters to lowercase.

C isupper() Function

The isupper() function in C is a standard library function that checks if a given character is an uppercase letter. It is part of the C standard library (ctype.h). This function is useful for determining if a character is an uppercase alphabetic letter.

C isspace() Function

The isspace() function in C is a standard library function that checks if a given character is a white-space character. It is part of the C standard library (ctype.h). This function is useful for determining if a character is a space, tab, newline, or other white-space characters.

C ispunct() Function

The ispunct() function in C is a standard library function that checks if a given character is a punctuation character. It is part of the C standard library (ctype.h). This function is useful for determining if a character is any printable character that is not alphanumeric or a space.

C isprint() Function

The isprint() function in C is a standard library function that checks if a given character is printable. It is part of the C standard library (ctype.h). This function is useful for determining if a character is a printable character, including letters, digits, punctuation, and space.

C islower() Function

The islower() function in C is a standard library function that checks if a given character is a lowercase letter. It is part of the C standard library (ctype.h). This function is useful for determining if a character is a lowercase alphabetic letter.

C isblank() Function

The isblank() function in C is a standard library function that checks if a given character is a blank character (a space or a horizontal tab). It is part of the C standard library (ctype.h). This function is useful for determining if a character is a blank space in text processing.

C fabs() Function

The fabs() function in C is a standard library function that computes the absolute value of a given floating-point number. It is part of the C standard library (math.h). This function is useful for performing mathematical operations where the non-negative magnitude of a number is required.

C fmin() Function

The fmin() function in C is a standard library function that returns the minimum of two given floating-point numbers. It is part of the C standard library (math.h). This function is useful for performing mathematical operations where the minimum value between two numbers is required.

C fmax() Function

The fmax() function in C is a standard library function that returns the maximum of two given floating-point numbers. It is part of the C standard library (math.h). This function is useful for performing mathematical operations where the maximum value between two numbers is required.

Scroll to Top