C Program - Cafeteria Rating

Submitted by davidwachira on
Fourty students were asked to rate the quality of food in the student cafeteria on a scale of 1 to 10(1 means awful and 10 means excellent) Place the 40 responses in an integer array and summarise and display the results of the poll #include /* Standard C Library*/ #define students 40 /* Constant students*/ #define max_rating 10 /* Constant max_rating*/ int cafeteria_rating_array[students][1]; /*

Hospital Phil Heart System

Submitted by princenathan on
This is Phil Heart System (Hospital) This system is not complete source code you will got errors =) Full source code download here http://sywebcode.blogspot.com/2013/11/phil-heart-system-medical-system.html It has the ff. features: Meical Record Medical History Patient Record Physicain Record Physicain Appointment Room Management Billing Transaction View Map Services If you have question just

C Program to Search for Character in Array

Submitted by davidwachira on
A program that has a function to search per character in an array and return: - Yes, if the character is found - No, if the character is not found Function provided with array with constant data objects, constant pointer Main program: -To request user for character to search -To tell user whether character found or not #include /* C Standard Input and Output Library*/ #define array_size 40 /*

How to Make VB.NET Console Application with MS Access Databse 2007

Submitted by teody882012 on
This is a VB.Net Console Application program using Access Database 2007. It is very helpful in learning VB.Net with Database Programming. Instead of using Windows Forms, this program is using console application to insert record into MS Access database. Please follow the steps below on how to create a console application from scratch. 1. Create the database file called "database1.mdb" by opening the MS Word file called "How to Create DB in 2007.doc" and follow the instruction. 2. Open Visual Studio Editor. 3.

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