Introduction
Write C program to check vowel or consonant using switch case
Write C program to check vowel or consonant using switch case
#include <stdio.h>
int main()
{
char ch;
//Reading an alphabet from user
printf("Enter any alphabet: ");
scanf("%c", &ch);
// checking vowel and consonant
switch(ch)
{
case 'a': printf("vowel");
break;
case 'e': printf("vowel");
break;
case 'i': printf("vowel");
break;
case 'o': printf("vowel");
break;
case 'u': printf("vowel");
break;
case 'A': printf("vowel");
break;
case 'E': printf("vowel");
break;
case 'I': printf("vowel");
break;
case 'O': printf("vowel");
break;
case 'U': printf("vowel");
break;
default: printf("consonant");
}
return 0;
}
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …