Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Misc
7.7K+ articles
C++
3.8K+ articles
C Language
1.3K+ articles
C Programs
441+ articles
Articles
132+ articles
secure-coding
26+ articles
Programming Basics
18+ articles
C Array and String
17+ articles
gets
2+ articles
C-programming
10 posts
Recent Articles
My Experience Using GeeksforGeeks as a College Student
Last Updated: 17 December 2025
I am a student from Hyderabad Institute of Technology and Management (HITAM). When I started my engineering journey, I was not sure how to begin coding or which platform t...
read more
C-programming
secure-coding
Career-Advices
GeeksforGeeks
Campus Experiences
Engineering Exams
C Program For Deleting A Node In A Linked List
Last Updated: 23 July 2025
We have discussed Linked List Introduction and Linked List Insertion in previous posts on a singly linked list.Let us formulate the problem statement to understand the del...
read more
C Language
Linked Lists
C-programming
How to read a PGMB format image in C
Last Updated: 23 July 2025
PGM or Portable Gray Map file is a grayscale image where each pixel is encoded with 1 or 2 bytes. It contains header information and pixel grayscale values in a matrix for...
read more
Technical Scripter
C Programs
C Language
Technical Scripter 2020
C-programming
Image-Processing
Use cases of mouse programming in C/C++
Last Updated: 15 July 2025
In this article, we will discuss some use cases of Mouse Programming:Display Mouse Pointer in graphics mode:For displaying the Mouse Pointer, first enable the graphic mode...
read more
C++
C-programming
Types of C files after its compilation
Last Updated: 23 July 2025
After writing C program when we compile and execute our program, there are various types of files are created. You can refer through Compiling a C program:- Behind the Sce...
read more
C Programs
C Language
C-programming
Programming Basics
Food Ordering System in C
Last Updated: 15 July 2025
Prerequisite: Modular Approach in Programming Problem Statement: Write C program to implement Food ordering with the following functionalities:Login SignupSearch by FoodS...
read more
C Language
C-programming
Examination Management System in C
Last Updated: 12 July 2025
Problem Statement: Write C program to build a Software for Examination Management System that can perform the following operations: Add/Delete the Details of the Students...
read more
C Language
C-programming
Structured Programming Approach with Advantages and Disadvantages
Last Updated: 01 November 2023
Structured Programming Approach, as the word suggests, can be defined as a programming approach in which the program is made as a single structure. It means that the code ...
read more
Misc
C Language
C-programming
How does Duff's Device work?
Last Updated: 01 July 2024
Duff’s device is a trick to express loop unrolling directly in C or C++ without extra code to treat the leftover partial loop.The trick is to use a switch statement where ...
read more
Technical Scripter
C Language
C-programming
gets() is risky to use!
Last Updated: 23 July 2025
Consider the below program. C void read(){ char str[20]; gets(str); printf("%s", str); return;} The code looks simple, it reads string from standard ...
read more
Articles
C Language
C-programming
gets
secure-coding
C Array and String