C/C++

C/C++ Source Code

Free C/C++ Source Code. Download 10 latest C/C++ system's projects with source code for free here.

Matrix Multiplication - C Program

Submitted by davidwachira on
A program that can be used to multiply two matrices. It uses the following algorithm: Step 1: Make sure that the the number of columns in the 1st one equals the number of rows in the 2nd one. (The pre-requisite to be able to multiply) Step 2: Multiply the elements of each row of the first matrix by the elements of each column in the second matrix. Step 3: Add the products. #include //Variable

Airport Simulation

Submitted by Raj.Sharma on
Simulation of an Airport. There is a small busy airport with only one runway. In each unit of time one plane can land or one plane can take off, but not both. Planes arrive ready to land or to take off at random times, so at any given unit of time, the runway may be idle or a plane may be landing or taking off. There may be several planes waiting either to land or to take off. Follow the steps

Dictionary V1.0

Submitted by Raj.Sharma on
Program simulates a dictionary using linked list Each word added to the list can have maximum 5 meaning(s). Hence, variable used to store meaning(s) of a word would be a two dimensional character array. Features: 1. Add new word 2. Search Word 3. Show Dictionary This program can be used as mini project in C/C++. For students or anyone else who needs program or source code for thesis writing or any

Lift V1.0

Submitted by Raj.Sharma on
A program that demonstrates how an array can be used to show working of lifts in a multi-storeyed building. A 30- storeyed building has got about 5 wings where there would be a lift in each of the wing. You have to make available a lift to the person who presses a button to get a lift. Follow the steps given below for designing the program. 1. The floors of the building should be numbered as 0 -

Linked List and Stack implementation in C

Submitted by deepak.gupta150 on
Student management system coded in C. This application is created to demonstrate Linked list and Stack implementation using C. Stack - In automated stockroom, initially the user has to provide the quantity of retailers to be taken from the truck and then the program will prompt the user to add the product id as well bin id for the respective retailers and then after scanning all the ID’s program