Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <string.h>
int check_vowel(char);
int main()
{
char s[100], t[100];
int c, d = 0;
scanf("%s",&*s);
for(c = 0; s[c] != '\0'; c++)
{
if(check_vowel(s[c]) == 0)
{
t[d] = s[c];
d++;
}
}
t[d] = '\0';
strcpy(s, t);
printf(“%s\n”, s);
return 0;
}
int check_vowel(char ch)
{
if (ch == 'a' || ch == 'A‘ || ch == 'e' || ch == 'E' || ch == 'i' || ch == 'I' ||
ch =='o' || ch=='O' || ch == 'u' || ch == 'U')
return 1;
else
return 0;
}

You might also like