C/C++

Travel Management System

Submitted by JAHANGEERQADIREE on
Travel Management System contain about us (i.e. some info about the travel agency), ticket booking, cancelling of tickets, show the available trains and their arrival and departure time in case of railways. Similarly, it shows the available domestic and international flights (one way, round way journey), select their day of departure, select their day of arrival, type of sex (male or female), no

CMOS Password Breaker/Recovery

Submitted by JAHANGEERQADIREE on
CMOS Password Breaker Is a useful Utility. This is a helpful utility for those person who forgot their cmos password. This programm can break all the cmos password stored in cmos battery (SUPERVISOR Password and USER Password). NOTE: When you break cmos password by using this, then next time when you boot your computer then at startup cmos shows checksum error and restore defaults. IT IS NORMAL.

Water Billing System

Submitted by Seshele on
Water Billing System was aimed to solve problem of water Bill calculations for Maseru and Mafeteng Clients. The reports are produced in the form of written file. Its just a simulation but it works correctly. This programme gives output as 4 files of which 2 files are txt files (Bills and default), and 2 are doc files (Maseru and Mafeteng). Bills file contains information for all clients who

C Program - Working with Sub-arrays

Submitted by davidwachira on
C program with the following specifications : • An array of a variable size (n) • A variable (y) of type integer • The algorithm should divide the array into n/y parts • Calculate the average for each part • Finally find the maximum value among the averages #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int y; /* Declaration of a variable called y of type integer. */

Fibonacci Series in C

Submitted by davidwachira on
A simple implementation of the Fibonacci number series. The Fibonacci series is formed by adding the latest two numbers to get the next one, starting from 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, ... #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int number_of_terms; int pre_term = 0; int post_term = 1; int next_transition; int loop

Coursework Grading Program in C

Submitted by davidwachira on
A program to read data for each student (50) of a course (each line of data consists of the student name, followed by marks (out of 100) obtained in six assignments) , calculate the average mark (out of 50) obtained and output the results under suitable headings. For each student print the name, the six marks, the average and the message pass or fail (use both member operator and arrow operator)