Showing posts with label code. Show all posts
Showing posts with label code. Show all posts

Monday, March 31, 2014

C code for Basic Cocomo Model

//C program to calculate effort, development time, productivity and average staff required in Basic cocomo model// #include<stdio.h> #... Read More

Saturday, March 29, 2014

Java code to insert delete and display from Linear Queue

/* Java program to implement Linear Queue. */ import java.io.*; class queue { int Q[] = new int[100]; int n, front, rear; static BufferedRea... Read More

Tuesday, March 18, 2014

Morse Code Reader

Morse Code Reader 1.0 Listens to Morse code through your phone's mic and translates it to text. The application is somewhat picky about... Read More