CJCoding With Joseph

Function: Is Vowel

Write a function isVowel(char c) that returns 1 if c is a lowercase vowel (a, e, i, o, u) and 0 otherwise. Read one character from input and print the result. For input e the output is:

1

Print just 1 or 0 with %d.

Expected Output:

1
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
e
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.