Searching for a word in a Dictionary - C Program

Submitted by davidwachira on
A program that searches for a word in a dictionary. - Create a small dictionary of strings - Not in order - Create an interface for user to search for a word in the dictionary If the word is not found, the word is added to the dictionary. The dictionary has 1000 words (English/Swahili) #include /* C Standard Input and Output Library*/ #define array_size 1000 /* Constant size of the array to be

Volume of a Cone Coding

Submitted by Pigout77 on
The program has the following features: 1. User input for the integer values of the radius and height. 2. A reset button that will clear all textboxes and result labels. 3. A graphical image is to be included showing how the dimensions of the cone are measured. 4. A quit program button.

Financial Investment Calculator (Updated)

Submitted by kingwash on
Hi guys, I'm new to PHP. I'm actually from a .NET background and studying PHP & MYSQL on my own. This is my first commercial PHP application. This is a financial investment application in php I developed for a financial investment company. The application can calculate the clients monthly premium and maturity benefit over a period of time(years). You can update and use it for your project work or

Month Year date

Submitted by Bapuase on
Code for generating month year date. You can get month and year of any year for the 12 months. this is not a complete project but it can help you to make your applications look good. A combobox is used here to generate the dates in month an year

Full Sreen Application + (Disabled CTRL+ALT+DEL) + (Disabled Start Menu)

Submitted by Qaalid on
This application is built in vb.net 2005 i want it to use for screen lock with password protected but no database, in the future i want to make it with password. Features -------- 1. Full screen mode 2. Taskbar is disabled 3. ALT+CTRL+DEL is disabled 4. Start Menu is disabled Weaknesses ---------- 1. ALT+TAB is still working 2. ALT+F4 is still working 3. No database for passwords Contact qaalid207

Advance Login Form V2.0

Submitted by Raj.Sharma on
This Project will guide you how to make advance login form for your own Project Main Features are : 1. Login from Database, Only registered users can login 2. Change Password Form 3. Password Recovery Form Login Details : Username - admin Password - 12345 For students or anyone else who needs program or source code for thesis writing or any Professional Software Development,Website Development

Histogram of the frequencies of characters - C Program

Submitted by davidwachira on
A program written in C to print a histogram of the frequencies of different characters (printable) in its input as horizontal bars #include /* C Standard Input and Output Library*/ /*Variable declarations*/ char string_of_characters[200]; int character_frequency_counter; int counter; int print_histogram_counter; int output_counter; char frequency_array[26][2]={'a',0,'b',0,'c',0,'d',0,'e',0,'f',0

TextBox Validation in Delphi

Submitted by teody882012 on
Delphi validation program Follow the instructions / procedures below: 1. Open your Delphi IDE 2. Create a Form with 2 TLabels, 2 TEdit and 1 TButton, Just like this: 3. Copy and paste the sourcecodes below: unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; type TForm1 = class(TForm) Edit1: TEdit; Label1: TLabel; Edit2: TEdit;