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
CPP-Library
254+ articles
C-Functions
87+ articles
C-String
57+ articles
C-Library
132+ posts
Recent Articles
Popular Articles
ilogb() Function in C
Last Updated: 18 July 2024
The ilogb() function in C is a part of the standard math library math.h. It is used to compute the binary exponent of a floating-point number, which is the exponent of the...
read more
C Language
C-Functions
C-Library
C Programs
nextafter() Function in C
Last Updated: 17 July 2024
In C, the nextafter() is a standard library function that is used to find the next representable floating-point value after a given number in the direction of another spec...
read more
C Language
C-Functions
C-Library
copysign() Function in C
Last Updated: 17 July 2024
The copysign() function in C is part of the standard math library math.h and is used to create a floating-point number that combines the magnitude of one number with the s...
read more
C Language
C-Functions
C-Library
scalbn() Function in C
Last Updated: 17 July 2024
The scalbn() function in C is part of the standard math library math.h and is used to scale a floating-point number by an integral power of the base (2 raised to the expon...
read more
C Language
C-Functions
C-Library
C Programs
fdim() Function in C
Last Updated: 16 July 2024
The fdim() function in C is part of the standard math library math.h and is used to compute the positive difference between two floating-point numbers. This function is pa...
read more
C Language
C-Functions
C-Library
C Programs
How to Create a Static Library in C?
Last Updated: 11 July 2024
In C, we can create our own libraries that contains the code for the functions or macros that we may need very often. These libraries can be then used in our programs. In...
read more
C Language
C-Library
Picked
C Examples
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
C islower()
Last Updated: 10 November 2022
islower() function is used to check whether a character is a lowercase letter or not. It is a standard library function defined in the ctype.h header file.Syntax:int islow...
read more
C Language
C-Functions
C-Library
C Library Function - putc()
Last Updated: 06 June 2023
In C, the putc() function is used to write a character passed as an argument to a given stream. It is a standard library function defined in the stdio.h header file. The f...
read more
C Language
C-Functions
C-Library
Header Files in C
Last Updated: 16 April 2025
In C programming, a header file is a file that ends with the .h extension and contains features like functions, data types, macros, etc that can be used by any other C pro...
read more
C Basics
C Language
C-Library
Picked
std::string::crbegin() and std::string::crend() in C++ with Examples
Last Updated: 10 July 2022
std::string::crbegin()The std::string::crbegin() is a string class built-in function that returns a constant reverse iterator referring to the last element in the string. ...
read more
Strings
STL
cpp-string
CPP-Functions
C Language
C++
C-String
C-Functions
C-Library
C Programs
C++ Programs
cpp-strings
DSA
std::string::rfind in C++ with Examples
Last Updated: 26 May 2022
The std::string::rfind is a string class member function that is used to search the last occurrence of any character in the string. If the character is present in the stri...
read more
Strings
Searching
C++
C-Library
C++ Programs
cpp-strings
DSA
<complex.h> header file in C with Examples
Last Updated: 07 April 2020
Most of the C Programs deals with complex number operations and manipulations by using complex.h header file. This header file was added in C99 Standard. C++ standard libr...
read more
Mathematical
C Language
C-Library
C Programs
DSA
<cfloat> float.h in C/C++ with Examples
Last Updated: 25 November 2019
This header file consists of platform-dependent and implementation specific floating point values. A floating point has four parts.SignIts value can be either negative or ...
read more
CPP-Library
C Language
C++
C-Library
time.h localtime() function in C with Examples
Last Updated: 07 November 2019
The localtime() function is defined in the time.h header file. The localtime( ) function return the local time of the user i.e time present at the task bar in computer.Syn...
read more
Competitive Programming
Puzzles
C Language
Quizzes
C Quiz
C-Library
C Programs
DSA
1
2
3
4
5
6
7
8
9
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 !