Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

vowel and consonant identification in c

if(ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u') {  
     printf("%c is vowel
", ch);  
 }  
 else {  
     printf("%c is consonant
", ch);  
 }
Source by cpbook.subeen.com #
 
PREVIOUS NEXT
Tagged: #vowel #consonant #identification
ADD COMMENT
Topic
Name
8+8 =