C Programming Source Code

Automated System for Bank Management

Automated System for Bank Management

This C program is a simple banking system designed for novice programmers. The program uses graphics.h for graphical user interface elements, such as windows and…

Game Developed in C++ – Escape away to your dream vacation

This is a Game program written in C++.  The objective of the game is to get to your proper plane on time so you can fly…

Creating Borland C/C++ Compiler like Interface in C

This is a Borland C/C++ compiler Interface using the graphics.h library. This program uses many functions of graphics.h library provided by C Language. These functions…

Drawing Graphics by using C Programing Language

This is a C Language Program to show the drawing and filling of some basic shapes like rectangle, circle etc. with colors and different shades…

Graphical Scientific Calculator with Advance Features

This is a C implementation of basic and few advance scientific features of calculator. It shows a nice graphical UI of the calculator with 3D…

Insertion in Arrays using C [Add an element in Array in C]

This C program shows insertion in Arrays. It shows how to insert an element in an array at any point. This program also shows how…

Defensive Programming Techniques

This source code is from Thinking in C++, 2nd Edition, Volume 2, by Bruce Eckel & Chuck Allison. You can use Borland, G++ (For version…

Different ways to initialize an array in C Programming

In C, an array can be initialized using aggregates, which are a collection of values enclosed in braces ({}) and separated by commas. Another way…

Comparing Two Arrays in C: By Contents and By Address

This C program compares two distinct arrays and if the arrays are same then content results in FALSE. The behavior of comparison is explained when…

Read, Print and Reverse Integer Arrays in C

This program serves as a practical example for beginners to understand array manipulation, function usage, and basic input/output operations in the C programming language. It…