STRING MANIPULATION - C Codes
Description To count no of vowels in a sentence Source Code #include<stdio.h> #include<string.h> main() { char a[]="please read this information "; int i,j,l,count=0; l=strl ...

Description This is a code to convert Upper Case to Lower Case or Lower Case to Upper Case depending on the name it is invoked with as found in argument. Source Code #include <stdio.h> #include < ...

Description Program to calculate frequency of a string Source Code #include <stdio.h> #include <conio.h> void main() { int a=0,e=0,i=0,o=0,u=0,sum=0; char c; clrscr(); printf("Enter s ...

Description Program to find out if entered string contains a space character. Source Code #include <stdio.h> #include <conio.h> #include <ctype.h> space(char s); void main() { char s; ...

Description To arrange given names in alphabetical order Source Code #include<stdio.h> #include<string.h> main() { char *a[7]={ "rohit", "nikhil ...
