Program to delete vowels from String in C - C Programming [Practical Series]

preview_player
Показать описание
Program to delete vowels from String in C - C Programming [Practical Series]
In This Tutorial, We will learn about Program to delete vowels from String in C - C Programming [Practical Series]

Full Tutorial Step By Step with proper guidance.
Please subscribe and press the bell icon to receive daily updates

#Removingvowelsfromstring #ProgramtodeletevowelsfromStringinC #Ctutorials
Рекомендации по теме
Комментарии
Автор

Sir the video is good and easy to understand but as one of the comments said.... While loop solves the problem and it removes all vowels.. like eg: haveagoodday
Ans: hvgddy
In if only some vowels are getting removed... Like eg: haveagoodday
Ans: hvagoddy

chefmuffin
Автор

Little mistake in this program ..jha pr IF hai wha pr WHILE ka use krna h...

funsh
Автор

I think if we check for aab it will give ab

shubhambarolia
Автор

If I pass a string 'india' it won't remove last char 'a'

deepakskumardashing
Автор

void main()
{
char str[100];
int l, i;
printf("\n\t Enter the String:");
gets(str);
l=strlen(str);
printf("\n\tAfter Removing vowels from the string:");
for(i=0;i<l;i++)
{
if(str[i]!='A'&&

{
printf("%c", str[i]);
}
}
}

rajadasgupta
Автор

Sir, this code is not accurate, does not work for consecutive vowels in a string.

amanqureshi
welcome to shbcf.ru