Showing posts with label Programs. Show all posts
Showing posts with label Programs. Show all posts

Tuesday, 23 September 2014

My Experience in IT

Friends, A lot of students complete their graduation, engineering but one thing that hammers them all the time is a software JOB. They try in college placements. Some don’t even have that opportunity. Some try after their college, for two years, three years and get disappointed. But friends, I just want to tell you all that never ever lose hope,...

Saturday, 15 June 2013

calculator

Calculator Program Code: #include #include #include void showcalculator(void); void showcalculator(){ long double fact=1; float a,b,choice,r; char op; clrscr(); printf(" "); printf("\n "); printf("\n "); printf("\n ...
Posted on 05:44 | Categories:

Friday, 31 May 2013

Mini Project

LIVE MEETING:  PURPOSE OF THE PROJECT         The project "Live Meeting" deals with identifying the employee (User) to send and receive mail & provides Live Chat to each other in the chat room with the same login page. This utility will allow multiple users to login under the same login page...

Important c program part3

Program of Radix Sort #include <stdio.h> #include <conio.h> void radixsort( int a[], int n ) { int * p, *r, i, j, k, l, q, x; r = ( int * ) malloc( n * sizeof( int ) ); p = ( int * ) malloc( n * sizeof( int ) ); for( i = 0; i < 4; i++ ) { for( j = 0; j < n; j++ ) { x = a[j]; for( k = 0; k <= i; k++ ) ...
Posted on 02:23 | Categories:

Friday, 24 May 2013

Program in C

PROGRAM TO FIND THE ROOTS OF A QUADRATIC EQUATION #include<stdio.h> #include<conio.h> #include<math.h> void main() { int a,b,c,flag; float root1,root2,discr,unknown; clrscr(); printf("PROGRAM TO FIND THE ROOTS OF A QUADRATIC EQUATION \n\n\n"); printf("Enter the values of a,b & c \n\n"); scanf("%d %d %d",&a,&b,&c); ...
Posted on 20:02 | Categories: