Computer Science, asked by shyamsip2017, 3 months ago

Write a program to enter a string and print vowels in uppercase.​

Answers

Answered by Anonymous
3

Explanation:

Write a C programming to convert vowels into upper case character in a given string.

Sample Solution:

C Code: #include int main() { char string1[255]; int i; printf("Input a sentence: "); gets(string1); printf("The original string:\n"); puts(string1); i=0; while(string1[i]!='\ ...

Flowchart :

C Programming Code Editor:

Answered by amritson24
0

Explanation:

Write a C programming to convert vowels into upper case character in a given string.

Sample Solution:

C Code: #include int main() { char string1[255]; int i; printf("Input a sentence: "); gets(string1); printf("The original string:\n"); puts(string1); i=0; while(string1[i]!='\ ...

Flowchart :

C Programming Code Editor

Similar questions