You are on page 1of 9

Programs on Number logics c program to calculate simple interest c program to calculate compound interest c program to find factorial of a given

number c program to find a number is even or odd c program to find a number is perfect or not c program to find a number is prime or not c program to find a factors of integer c program to find prime factors c program to find a number is armstrong or not c program to print armstrong number c program to find a number is amicable or not c program to find sum of n numbers c program to find average of n numbers c program to find largest of two numbers c program to find largest of n numbers c program to find LCM of two numbers c program to find GCD of two numbers c program to print numbers in word format c program to print pascal Triangle c program to find roots of quadriatic expression c program to find addition and subtraction of complex numbers c program to find multiplication of complex numbers c program to print pyramid of numbers c program to convert demical number to binary c program to convert demical number to octal c program to convert demical number to hexadecimal c program to print sum of digits of positive integer

c program to implement towers of hannoi c program to check a number is palindrome number or not c program to check a number is strong number or not c program to to find biggest of three numbers c program to find largest & smallest values in array c program to find no. of possible combinations c program to find no. of digits in a number c program to find no. of permutations c program to find prime numbers below 100 c program to find result of power value c program to find reverse of a number c program to find smallest number in an array c program to find sum of Digits of a number c program to Implement Floyds Triangle c program to check a number is even or odd c program to swap two numbers without using temp

Functions c program to implement function with arguments and no return value c program to implement Function with arguments and a return value c program to implement Function with no arguments and a return value c program to implement function with no arguments and no return value

Matrices c program to find addition of two matrices c program to find multiplication of two matrices c program to find transpose of a given matrix c program to find inverse of a given matrix

c program to print lower triangle of a matrix c program to print upper triangle of a matrix c program to represent sparse matrix c program to find addition of sparse matrix c program to find multiplication of sparse matrix

Macros c program to find simple interest using macros c program to find maximum and minimum values using macro's

Recurrsion programs c program to find gcd of two numbers using recurrsion c program to print fibonacci numbers using recurrsion c program to find factorial of a number using recurrsion c program to find sum of factorial series using recurrsion c program to find reverse of a number using recurrsion

Programs on Data Types c program to find size of various data types

Programs on Storage classes c program showing automatic variable scope c program showing external variable scope c program showing static variable scope c program showing register variable scope

Programs on Structs & unions c program to add delete modify employee data

Strings c program to find reverse a string using strrev c program to find reverse a string using pointers c program to find reverse a string using arrays c program to find length of a string using strlen c program to find length of a string using arrays c program to find length of a string using pointers c program to concatinate two strings using strCat function c program to concatinate two strings using arrays c program to check status of a character c program to convert string to lowercase c program to convert a string to uppercase c program to convert string to uppercase c program to convert string to lowercase c program to find a string is substring or not c program to find no, of words in a string c program to find no, of vowels in a string c program to find first occurance of character in a string c program to compare two strings using arrays c program to compare two strings using pointers c program to compare two strings using strcmp c program to check if a string is palindrome or not c program to find position of a substring c program to find Various combinations of string c program to show acromatic string c program to show rain drop character

Files c program to copy one file into another file c program to write student records in a file

Graphics c program to show different line styles c program to show various fill styles c program to show various font styles Others c program to show escape operators

Data structures Programs Find programs on stacks, linked lists, queues, trees, searching & sorting in c language

ARRAY DATA STRUCTURE PROGRAMS USING C LANGUAGE


PROGRAM TO FIND MULTIPLICATION OF TWO MATRICES PROGRAM TO PRINT TRANSPOSE OF A MATRIX PROGRAM TO ACCEPT 10 STRINGS AS INPUT & PRINT IN LEXICOGRAPHIC ORDER PROGRAM TO TWO STRINGS S1,S2 & CHECK IF S2 IS SUBSTRING OF S1 & ALSO THE POSITION OF THE SUB STRING IN S1 PROGRAM TO CONCATENATE TWO STRINGS S1 & S2 PROGRAM TO FIND THE STUDENT INFORMATION & PRINT THE STUDENT INFORMATION & RANK SECURED IN ASCENDING ORDER. PROGRAM TO MULTIPLY TWO SPARCE MATRICES PROGRAM TO TAKE PARAGRAPH AS INPUT AND OUTPUT NO, OF OCCURRENCES OF STRING IN PARAGRAPH

POINTERS PROGRAMS IN C
PROGRAM FOR THE CREATION & DELETION OF A LIST USING POINTERS PROGRAM TO REVERSE AN INPUT STRING PROGRAM TO CONVERT A PREFIX EXPRESSION TO A POSTFIX USING POINTERS

LINKED LISTS DATA STRUCTURE PROGRAMS IN C


PROGRAM TO CREATE ADD REMOVE & DISPLAY ELEMENT FROM SINGLE LINKED LIST PROGRAM TO CREATE ADD REMOVE & DISPLAY ELEMENT FROM DOUBLE LINKED LIST PROGRAM TO COUNT NUMBER OF NODES IN LINEAR LINKED LIST PROGRAM TO CREATE ADD REMOVE & DISPLAY ELEMENT FROM CIRCULAR LINKED LIST PROGRAM TO CONCATENATE TWO LINEAR LINKED LISTS PROGRAM TO ACCEPT 2 SINGLY LINKED LISTS & PRINT A SINGLY LINKED LIST THOSE ELEMENTS ARE COMMON IN BOTH THE LIST PROGRAM TO ACCEPT A SINGLY LINKED LIST OF INTEGERS & SORT THE LIST IN ASCENDING ORDER. PROGRAM TO IMPLEMENT CIRCULAR LINKED LIST IN C PROGRAM TO REVERSE LINKED LIST PROGRAM TO REPRESENT POLYNOMIAL USING LINKED LIST PROGRAM TO ADD TWO POLYNOMIALS USING LINKED LIST

STACKS DATA STRUCTURE PROGRAMS IN C


PROGRAM TO IMPLEMENT STACK USING ARRAYS PROGRAM TO IMPLEMENT STACK USING LINKED LIST PROGRAM TO IMPLEMENT MULTIPLE STACK IN A SINGLE ARRAY PROGRAM TO IMPLEMENT EXPRESSION TREE USING STACKS IND ITS INORDER, PREORDER & POST ORDER TRAVERSALS PROGRAM TO CONVERT INFIX NOTATION TO POSTFIX NOTATION USING STACKS

QUEUES DATA STRUCTURES PROGRAMS USING C


PROGRAM TO IMPLEMENT QUEUE USING ARRAYS PROGRAM TO IMPLEMENT QUEUE USING POINTERS PROGRAM TO IMPLEMENT CIRCULAR QUEUE USING ARRAYS PROGRAM TO IMPLEMENT CIRCULAR QUEUE USING POINTERS PROGRAM TO IMPLEMENT DEQUEUE USING ARRAYS PROGRAM TO IMPLEMENT DEQUEUE USING POINTERS PROGRAM TO REVERSE ELEMENTS IN A QUEUE

TREES DATA STRUCTURES PROGRAMS IN C


PROGRAM FOR THE CREATION OF BINARY TREE, PROVIDE INSERTION & DELETION IN C PROGRAM FOR PRE-ORDER,POST-ORDER & IN-ORDER TRAVERSALS OF A BINARY TREE USING NON RECCURSIVE. PROGRAM TO COUNT NO, OF LEAVES OF BINARY TREE PROGRAM FOR IMPLEMENTATION OF B-TREE (INSERTION & DELETION) PROGRAM FOR IMPLEMENTATION OF MULTIWAY TREE IN C PROGRAM FOR IMPLEMENTATION OF AVL TREE PROGRAM FOR IMPLEMENTATION OF SPLAY TREE PROGRAM FOR IMPLEMENTATION OF RED-BLACK TREE

HASHING DATA STRUCTURE PROGRAMS USING C


PROGRAM TO IMPLEMENT HASHING USING OPEN ADDRESSING

HEAPS DATA STRUCTURE PROGRAMS IN C


PROGRAM TO IMPLEMENT PRIORITY QUEUE USING HEAP

GRAPHS DATA STRUCTURE PROGRAMS IN C


PROGRAM TO IMPLEMENT DIJKSTRA'S ALGORITHM USING PRIORITY QUEUES PROGRAM TO IMPLEMENT KNAPSACK PROBLEM USING BACKTRACKING PROGRAM TO ADD & DELETE NODES FROM ADJACENCY LIST PROGRAM TO IMPLEMENT DEPTH FIRST SEARCH PROGRAM TO FIND MINIMAL SPANNING TREE USING KRUSKAL'S ALGORITHM PROGRAM TO FIND MINIMAL SPANNING TREE USING PRIMS ALGORITHM PROGRAM TO IMPLEMENT BREADTH FIRST SEARCH

SEARCH PROGRAMS IN C
PROGRAM TO IMPLEMENT LINEAR SEARCH USING POINTERS PROGRAM TO IMPLEMENT BINARY SEARCH USING POINTERS PROGRAM TO IMPLEMENT LINEAR SEARCH USING ARRAYS PROGRAM TO IMPLEMENT BINARY SEARCH USING ARRAYS

SORTING PROGRAMS USING C


PROGRAM TO IMPLEMENT BUBBLE SORT PROGRAM USING ARRAYS PROGRAM TO IMPLEMENT MERGE SORT USING ARRAYS PROGRAM TO IMPLEMENT SELECTION SORT PROGRAM USING ARRAYS PROGRAM TO IMPLEMENT INSERTION SORT PROGRAM USING ARRAYS PROGRAM TO IMPLEMENT TOPOLOGICAL SORT USING ARRAYS PROGRAM TO IMPLEMENT HEAP SORT USING ARRAYS PROGRAM TO IMPLEMENT HEAP SORT USING POINTERS PROGRAM TO IMPLEMENT BUBBLE SORT PROGRAM USING POINTERS

Automation of vehicle showroom requires: Selling vehicles to customers. Tracking vehicle sale and bookings. Maintaining customer database. Maintaining stock details of vehicles available. Maintaining spares database.

About the project


This project mainly used for automation of hospital management The Software includes:o Maintaining Patient details. o Providing Prescription, Precautions and Diet advice. o Providing and maintaining all kinds of tests for a patient. o Billing and Report generation.

Online Examination Project Report

This Web Application provides facility to conduct online examination world wide. It saves time as it allows number of students to give the exam at a time and displays the results as the test gets over, so no need to wait for the result. It is automatically generated by the server. Administrator has a privilege to create, modify and delete the test papers and its particular questions. User can register, login and give the test with his specific id, and can see the results as well.

Internat cafe Administration Project Report Download


Internet Cafe Administration system Software has features, which can be used as administrating an Internet caf, or any organization or institution in which there are regular users of Internet is present. Main function of this software can be described as below 1)There is separate password for different administrator he can produce login and id for each user. 2) The administrator can do the system rate setting time setting generates messages to the users about there time period and renewal of the login in prescribed time. 3) It provides full billing system according to the users requirement. 4) The most attractive feature of this software is that it provides the daily monthly and yearly report of the earnings of the caf or center

You might also like