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… Read More
Tag Archives: C-programming
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… Read More
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… Read More
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… Read More
Prerequisite: Modular Approach in Programming Problem Statement: Write C program to implement Food ordering with the following functionalities: Login & Signup Search by Food Search… Read More
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
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… Read More
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 input… Read More