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
Python
21.3K+ articles
Java
10.8K+ articles
Mathematical
7.8K+ articles
C++
4.3K+ articles
Competitive Programming
3.3K+ articles
C++ Programs
2.4K+ articles
Algorithms
2.0K+ articles
C Language
1.8K+ articles
Programming Language
/
C Language
C Language
2.1K+ posts
Recent Articles
Popular Articles
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
C Fundamental Quizzes
Last Updated: 09 April 2025
C fundaments teach you how to store and access data in the program, input and output data, learn how to perform basic operations and control the flow of the program. They ...
read more
C Language
C Quiz
C Compound Data Type Quizzes
Last Updated: 09 April 2025
In C, compound data types are those data types that are derived from basic data types. They provide an interface to use the basic data types is different ways to satisfy o...
read more
C Language
C Quiz
C Advanced Quizzes
Last Updated: 09 April 2025
Advance C refers to the complex concepts and application of the language. It includes concepts such as storage classes, preprocessor, generics, multithreading and applicat...
read more
C Language
C Quiz
C Fundamental Practice Problems
Last Updated: 08 April 2025
Fundamentals concepts teach you the absolute basics of the programming. It is the bare minimum that you should know about the programming language to create basic programs...
read more
C Programs
C Language
C Functions Practice Problems
Last Updated: 08 April 2025
Functions are the basic building block of C programs. They enhance the modularity and code reusability by separating the logic of a particular task from the main code and ...
read more
C Programs
C Language
C Compound Data Types Practice Problems
Last Updated: 08 April 2025
Compound Data Types are those data types in C that are created using basic data types. They provide an interface to use the built-in data types is different ways to satisf...
read more
C Programs
C Language
Lua Data Types
Last Updated: 27 March 2025
In Lua, data types define the kind of values a variable can hold. Since Lua is a dynamically typed language, variables can change their types during execution, which provi...
read more
Python
C Language
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
Pointer Arithmetic with Strings
Last Updated: 11 June 2025
Pointer Arithmetic is a technique in C that allows manipulation of memory addresses. We can also manipulate arrays using pointer arithmetic as the arrays are nothing but c...
read more
C Language
C-Pointers
C-String
Contact Book Application using C
Last Updated: 10 June 2025
A Contact Book is a simple application to store and manage people's contact information such as names and phone numbers. We will create a simple console-based C contact bo...
read more
C Language
C Projects
Input/Output Formatting in C
Last Updated: 11 June 2025
C allows formatting of input and output to the console primarily using formatted string. A formatted string is a string in which we add different kinds of symbols to speci...
read more
C Language
c-input-output
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
...
138
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 !