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 [...]
This program accepts ten numbers from the user and displays the largest one,
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 [...]
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 [...]
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 [...]
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 [...]
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]) [...]
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" [...]
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 [...]
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 [...]
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya