void main()
{
char sent[ ] = "She sells seashells on the seashore";
int i;
for(i = 0; sent[i] != 0; i++)
{
if(sent[i] == 97 || sent[i] == 101 || sent[i] == 105 || sent[i] == 111 || sent[i] == 117)
{
for(;sent[i + 1] != 0; i++)
sent[i]=sent[i + 1];
sent[i] = '\0';
i =- 1;
}
}
printf("\n %s", sent);
}
ALSO CHECK THESE C PROGRAMS:
86. C Program To Accept A String & Display It.
87. C Program To Find The Length Of A String.
88. C Program To Concatenate Two Strings.
89. C Program To Compare Two Strings.
90. C Program To Swap Two Strings.
91. C Program To Swap Two Strings Using strcpy() Function.
92. C Program To Sort A Given Number Of Strings Using strcmp() Function.
93. C Program To Check Whether A String Is Palindrome Or Not.
94. C Program To Print The Reverse Of A String.
95. C Program To Join Two Strings.
96. C Program To Display Array Of Strings.
97. C Program To Convert String To An Integer Using atoi() Function.
98. C Program To Accept A String & Display In Reverse.
99. C Program To Accept A String & Display Its Alternate Characters.
100. C Program To Accept A String & Display Alternate Characters In Either Case.
101. C Program To Accept A String & Display It's Substring.
102. C Program To Accept A String & Display It's Alternate Characters In Reverse.
103. C Program To Accept Two Strings & Display The Largest String.
104. C Program To Accept A String & Display Vowels.
105. C Program To Accept A String & Display Number Of Vowels.
...Back To C Program Index.
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com