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: “); […]