Source Code

Number Base Conversion in C – Decimal, Binary and Octal

Number Base Conversion in C – Decimal, Binary and Octal

This is a Number Base Conversion Program written in C. It is designed to assist novice C programmers in understanding and implementing basic number base…

Telephone Directory Program in C

This is telephone directory program written in C and uses BGI Graphics to display data. The program takes Name, Phone Number, Mobile Number, Address and…

Customizable Information Box Library in C

This C code provides a simple and customizable implementation for creating text boxes that can be used to display tips, hints, or information in a…

Making Mouse Pointers

How to create the mouse pointers in c language. Different shapes can be given to the mouse pointer by changing the values of the cursor…

Linked List Demo

This is a C Program to perform list traversal operation using linked list. This C program to show the basic functions of linked list such…

Directory Traversing in C using Tree Data Structure

This is a C Program to implement tree data structure. It uses current working directory as the root and traverse all files inside the directory…

Display Days of Week using enum Keyword in C

This C program uses enumerated types to display days of week. The enumerated type is then declared as a different name using typedef keyword i.e.…

Perform Linear Search on integer Arrays in C

This C program demonstrates basic functionalities for handling integer arrays. It allows users to input integers into an array, prints the array, and performs linear…