C-Programs
Wednesday, 6 September 2017
C-Program to know whether the character is vowel or not
›
#include<stdio.h> int main() { char c; printf("Enter a character to know whether it is vowel or not\n"); scanf("...
1 comment:
C-Program to Count number of vowels in a string
›
#include<stdio.h> int main() { char s[100]; int i,count=0; printf("Enter a string to know how many vowels are there \n...
C-Program to count number of words in a sentence
›
#include<stdio.h> #include<string.h> int main() { int i,word=1; char str[100]; printf("Enter a string\n")...
›
Home
View web version