Find if a given character is vowel.

This post content:-
  • Algorithm
  • Flowchart
  • C code
  • Output
  • Pdf notes

Algorithm:-
Step 1:- start.
Step 2:- declare variables char c,
Step 3:- if char c is a,e,i,o,u or A,E,I,O,U .
Step 4:- print the char c as a vowel.
Step 5:- else print char is not a vowel.
Step 6:- END.
Flowchart:-
c code:-
Output:-
Try it yourself:-

Comments

Popular posts from this blog

Develop and execute C Program to Add Two Distances given in kilometer-meter Using Structures.

Develop a c program to find the sum of all elements stored in a given array using a pointer.