Ads 468x60px

Labels

Jun 7, 2012

#7 - Number Of Vowels [C]

#include"stdio.h"
#include"string.h"
void main()
{
int count=0,x,a,e,i,o,u;
char name[25];
clrscr();
printf("\n Enter the name \n");
scanf("%s",&name);
x=strlen(name);
printf("Your name contain %d characters \n",x);
for(i=0;i

No comments:

Post a Comment