Citar
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int cuentavocales(char s);
int main ()
{
char palabra[51];
printf("Ingrese una oracion ");
gets(palabra);
printf("%d",cuentav(palabra));
return 0;
}
int cuentav(char *s)
int a=0,e=0,i=0,o=0,u=0;
while (s*)
{
switch(*s){
case 'a':
a=a+1;
case 'e':
e=e+1;
case 'i':
i=i+1;
case 'o':
o=o+1;
case 'u':
u=u+1;
}
s++;
}
#include <stdlib.h>
#include <conio.h>
int cuentavocales(char s);
int main ()
{
char palabra[51];
printf("Ingrese una oracion ");
gets(palabra);
printf("%d",cuentav(palabra));
return 0;
}
int cuentav(char *s)
int a=0,e=0,i=0,o=0,u=0;
while (s*)
{
switch(*s){
case 'a':
a=a+1;
case 'e':
e=e+1;
case 'i':
i=i+1;
case 'o':
o=o+1;
case 'u':
u=u+1;
}
s++;
}