program to accept ten numbers from the user and display the lowest one

Friday, October 7th, 2011  »  Posted By chitra  »  Total 3 Comments

This program accepts ten numbers from the user and display the lowest one, 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #include "conio.h" #include "stdio.h"   void main() { int num[10],low,i=0,j=1; printf("\nPlease provide 10 numbers to find lowest one [...]

Program to accept ten numbers from the user and display the largest one

Friday, October 7th, 2011  »  Posted By chitra  »  Total 0 Comment

This program accepts ten numbers from the user and displays the largest one,

Program to replace each string of one or more blanks by a single blank

Tuesday, September 6th, 2011  »  Posted By chitra  »  Total 0 Comment

Here is the program to replace each string of one or more blanks by a single blank. #include “stdio.h” #include “conio.h” #include “string.h” void main() { char input[100],output[100],c; int i=0,j=0; clrscr(); printf(“Enter the string\n”); gets(input); for(i=0;i<strlen(input);i++) { if(input[i]==' '&&input[i+1]!=' ') output[j++]=input[i]; else if(input[i]!=' ') output[j++]=input[i]; } output[j]=''; printf("\noutput string is\n"); puts(output); getch(); } Output: Enter [...]

Program to compute the word length of the host machine

Tuesday, September 6th, 2011  »  Posted By chitra  »  Total 0 Comment

Here is the program to compute the word length of the host machine. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include "stdio.h" #include "conio.h" void main() { int a,x; clrscr(); x=sizeof(a); printf("%d\n",sizeof(a)); if(x==2) { printf("Word length of host machine is 16 bits"); } else [...]

Program to match two given strings using function

Tuesday, September 6th, 2011  »  Posted By chitra  »  Total 0 Comment

This is the program which makes use of function matchany(s1,s2) which returns the first location in the string s1 where any character from the string s2 occurs, or -1 if s1 contains no character from s2. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [...]

Program to find the value of the polynomial f(x)=a4x4+a3x3+a2x2+a1x+a0 using Horner’s method

Monday, September 5th, 2011  »  Posted By chitra  »  Total 0 Comment

Here is the program to find the value of the polynomial f(x)=a4x^4+a3x^3+a2x^2+a1^x+a0 using Horner’s method 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #include "stdio.h" #include "conio.h" void main() { float a[100],sum=0,x; int n,i; clrscr(); printf("Enter the degree of [...]

Program to arrange the string in alphabetical order

Tuesday, August 30th, 2011  »  Posted By chitra  »  Total 0 Comment

Here is the program to arrange the string in alphabetical order. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #include "stdio.h" #include "conio.h" #include "string.h" void main() { char str[10],temp; int i,j; clrscr(); printf("\nEnter the string : "); scanf("%s",str); for(i=0;i<strlen(str);i++) for(j=0;j<strlen(str);j++) if(str[i]<str[j]) [...]

Program to delete n Characters from a given position in a given string using functions

Monday, August 29th, 2011  »  Posted By chitra  »  Total 0 Comment

This C program uses function delchar to delete n characters from a given position in a given string. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 #include "stdio.h" #include "conio.h" #include "string.h" [...]

Binary Search

Binary Search Monday, August 15th, 2011  »  Posted By chitra  »  Total 2 Comments

A binary search program locates the position of an item in a sorted array. Logic: The Binary search starts by testing the element at the middle of the array. Let us consider an array ‘a’ with all elements arranged in ascending order. Let low and high are the lower and upper indices of the array ‘a’, respectively. We want to search an [...]

Priority schedueling with & without preemtion, with aging, with different arrival times

Monday, May 30th, 2011  »  Posted By rayan daou  »  Total 0 Comment

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [...]

Question and Answer
C/C++ Unix & Linux Wordpress
Source codes
C C++ Java

Free email signup