jituTechnology

jituTechnology

A program to sort the data in ascending order using separate function to read, sort and display.

A program to sort the data in ascending order using separate function to read, sort and display. Codes /*A program to sort the data in ascending order using function*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void read(int num[],int); void sort(int num[],int); void display(int num[],int); main() { int n[20],x; […]

read more

A program to change the string ‘this is c programming’ in the given format.

A program to change the string ‘this is c programming’ in the given format. Codes /*A program to change the string ‘this is c programming’ in the given format*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void format(char[]); main() { char str[]=” this is c programming”; format(str); getch(); } […]

read more

A program to read a string and print the number of uppercase, lowercase letter and other character.

A program to read a string and print the number of uppercase, lowercase letter and other character. Codes /*A program to read a string and print the number of uppercase, lowercase letter and other character*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void uplow(char str[]); main() { char str[20]; […]

read more

A program to read a line of text and print the number of vowels using function.

A program to read a line of text and print the number of vowels using function. Codes /*A program to read a line of text and print the number of vowels*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> void vowel(char strint[]); main() { char string[20]; printf(“Enter any string: “); […]

read more

A program to print the prime numbers less than or equal to the number using function.

A program to print the prime numbers less than or equal to the number using function. Codes /*A program to print the prime number until ‘n’ using function*/ /*Programed by          Jitendra Kr Yadav                          10116      22 Mar,2011*/ #include<stdio.h> #include<conio.h> int prime(int); main() { int n; printf(“Enter the value: “); scanf(“%d”,&n); prime(n); getch(); } […]

read more