Tutorials
Courses
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
Misc
8.5K+ articles
C++
4.3K+ articles
C Language
1.5K+ articles
CPP-Functions
619+ articles
C Programs
555+ articles
C-Library
133+ articles
C Basics
78+ articles
C-String
58+ articles
C-File Handling
43+ articles
C-Functions
90 posts
Recent Articles
Popular Articles
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
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 Programs
C Language
C-Functions
C-Library
strncpy() Function in C
Last Updated: 05 August 2024
The strncpy() function in C is a predefined function in the string.h library used to copy a specified number of characters from one string to another. To use this function...
read more
C Programs
C Language
Picked
C-String
C-Functions
fclose() Function in C
Last Updated: 07 August 2024
In C language, fclose() is a standard library function used to close a file that was previously opened using fopen(). This function is the itegral part of the file handlin...
read more
C Language
C-Functions
C-File Handling
memcmp() in C
Last Updated: 08 January 2025
In C, memcmp() is a built-in function used to compare the given number of bytes of data pointed by two pointers passed as arguments. It returns an integer indicating wheth...
read more
C Language
C-Functions
fwrite() in C
Last Updated: 08 January 2025
In C, fwrite() is a built-in function used to write a block of data from the program into a file. It can write arrays, structs, or other data to files but is especially de...
read more
C Language
C-Functions
C-File Handling
rewind() in C
Last Updated: 08 January 2025
In C, rewind() is a built-in function used to reset the given file pointer to the beginning of a file allowing the read and write from the beginning once again in the prog...
read more
C Language
C-Functions
C-File Handling
remove() in C
Last Updated: 09 January 2025
In C, remove() is a standard library function is used to delete a file from the file system. It provides a simple way to manage files in the storage from a C program.Examp...
read more
C Language
C-Functions
File Handling
gets() in C
Last Updated: 14 January 2025
In C, gets() is a function used to read a line of input from standard input (stdin) into a character array. However, gets() has been deprecated since C11 and removed in la...
read more
C Language
C-Functions
ferror() in C
Last Updated: 03 February 2025
In C, ferror() is a built-in function used to check errors in files during file operations. It provides a simple way to do file operations without any interruption in your...
read more
C Language
C-Functions
File Handling
clearerr() in C
Last Updated: 03 February 2025
In C, file handling errors can be handled using ferror() and feof() functions. But these error flags persists until they are cleared. clearerr() is a built-in function use...
read more
C Language
C-Functions
File Handling
perror() in C
Last Updated: 03 February 2025
In C, perror() is a built-in function used to display a custom text description of the error code, which is stored in the system variable errno.Example:C#include stdio.hin...
read more
C Language
C-Functions
C-File Handling
Function Parameters in C
Last Updated: 11 June 2025
C function can receive some values to work on from its caller. These values are called function parameters or arguments and the process of supplying these values is called...
read more
C Language
C-Functions
Types of Recursion in C
Last Updated: 11 June 2025
Recursion is the process in which a function calls itself directly or indirectly to perform the same task it is doing but for some other data. It is possible by adding a c...
read more
C Language
C-Functions
Non-Standard I/O Functions in C
Last Updated: 11 June 2025
While the C standard library provides robust functions for input/output operations, many C implementations include non-standard I/O functions that offer additional functio...
read more
C Language
c-input-output
C-Functions
1
2
3
4
5
6
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 !