Examlex

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')


Definitions:

Related Questions