Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Misc
8.8K+ articles
C++
4.3K+ articles
C Language
1.8K+ articles
C Programs
705+ articles
CPP-Functions
615+ articles
C-Library
133+ articles
C-String
57+ articles
C-File Handling
43+ articles
C-Functions
98 posts
Recent Articles
Popular Articles
remquo() Function in C
Last Updated: 10 July 2024
The remquo() function in C is part of the standard math library math.h and is used to compute the remainder and part of the quotient of the division of two floating-point ...
read more
C Language
C-Functions
C-Library
C Programs
hypot() Function in C
Last Updated: 08 July 2024
The hypot() function in C is used to find the length of the hypotenuse of a right-angled triangle given the lengths of the other two sides. This function is particularly u...
read more
C Language
C-Functions
fmod() Function in C
Last Updated: 07 July 2024
The fmod() function in C computes the floating-point remainder of the division of two numbers. It is part of the math library math.h in C and cmath in C++.fmod() in CThe f...
read more
C Language
C-Functions
C floor() Function
Last Updated: 07 July 2024
The floor(x) function in C is used to compute the largest integer value less than or equal to a given number. This function is particularly useful in mathematical computat...
read more
C Language
C-Functions
Picked
C ceil() Function
Last Updated: 07 July 2024
In the C language, the math.h header file contains the Standard Math Library that provides various mathematical functions, including the ceil() function. In this article, ...
read more
C Language
C-Functions
Picked
round() Function in C
Last Updated: 05 July 2024
In the C language, the math.h header file contains the Standard Math Library that provides various mathematical functions, including the round() function. In this article,...
read more
C Language
C-Functions
Picked
cbrt() Function in C
Last Updated: 27 June 2024
cbrt()function in C is a predefined function in themath.hlibrary used to calculate the cube root of a given number. To use this function, we must include themath.hheader f...
read more
C Language
C-Functions
C Programs
Picked
C log() Function
Last Updated: 26 June 2024
log()function in C programming is a mathematical function provided by themath.hheader file and is used to calculate the natural logarithm (base(e)) of a given number passe...
read more
C Language
C-Functions
C Programs
Picked
C cos() Function
Last Updated: 26 June 2024
cos()function in C programming is provided by themath.hheader file and is used to calculate the cosine of an angle (x) where (x) is represented in radians. This function r...
read more
C Language
C-Functions
C Programs
Picked
tan() Function in C
Last Updated: 26 June 2024
tan() function in C programming is provided by the math.h header file and it is used to calculate the tangent of an angle x where x is represented in radians. This functio...
read more
C Language
C-Functions
C Programs
Picked
sqrt() Function in C
Last Updated: 25 June 2024
sqrt()function in C is a predefined function in themath.hlibrary used to calculate the square root of a given number. To use this function, we must include themath.hheader...
read more
C Language
C-Functions
C Programs
Picked
How to Read Data Using sscanf() in C?
Last Updated: 28 May 2024
In C, sscanf() function stands for "String Scan Formatted". This function is used for parsing the formatted strings, unlike scanf() that reads from the input stream, the ...
read more
C Language
C-Functions
C Programs
Picked
C Basic Programs
misc-c
qsort() Function in C
Last Updated: 27 November 2024
Theqsort()in C is alibrary function used to sort an array of items in ascending order or descending order. It stands for "quick sort," as it implements the quicksort algor...
read more
Quick Sort
C Language
C-Functions
Picked
C Library Functions
CPP Examples
How to use Printf in Julia?
Last Updated: 11 June 2024
In Julia, printf is not a built-in function but a macro provided by the Printf module of Julia's standard library. This macro allows you to format strings similarly to the...
read more
C-Functions
Julia
Julia-functions
function
module
Dev Scripter
Dev Scripter 2024
How to Create a Typedef for a Function Pointer in C?
Last Updated: 28 February 2024
In C, a function pointer is a variable that stores the address of a function that can later be called through that function pointer. The typedef is a keyword used to creat...
read more
C Language
C-Pointers
C-Functions
C Programs
Picked
C Examples
1
2
3
4
5
6
7
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !