Solved

Suppose C Is a Variable of Type Char

Question 58

Essay

Suppose c is a variable of type char.We want to know if c is a lowercase vowel letter (a/e/i/o/u).What is wrong with the following comparison?
if (c == 'a' || 'e' || 'i' || 'o' || 'u')

Correct Answer:

verifed

Verified

We have to repeat the "c ==" e...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions