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

Like and Unlike Script

Submitted by killerzone on
Like and Unlike sourcecode. System Requirements: -Xampp 1.7.3 or below -Chrome,Firefox,Opera How to Install? -Download the following files -Extract the zip files to htdocs(this is the path: C:\\xampp\htdocs) Create Database -Go to your browser ans type localhost/phpmyadmin -Create database name upload -Click Tab Import and Browse the sql file You can download more php Codes @ appscoder.blogspot

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