Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programs in c

C program to find whether the alphabet is a vowel or consonant

admin by admin
April 16, 2020
Reading Time:1min read
0

RELATED POSTS

Armstrong number in c

Program to find out the grade and percentage calculator in c

how to find quotient and remainder in c program

Hello Friends! Welcome to programming shortcut
Today will discuss:
1. Program to find whether the alphabet is a vowel or consonant or
2. c program to check vowel or consonant using a switch or
3. program to check an alphabet is a vowel or consonant
#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
printf(“Enter an alphabet : n”);
scanf(“%c”,&ch);
switch(ch)
{
case ‘a’:
case ‘e’:
case ‘i’:
case ‘o’:
case ‘u’:
case ‘A’:
case ‘E’:
case ‘I’:
case ‘O’:
case ‘U’:
printf(“Alphabet is an vowel:”);
break;
default:
printf(“Alphabet is a consonant:”);
}
getch();
}
Output:   First, run:
Enter the alphabet :
a
Alphabet is an vowel
Second Time run:
Enter the alphabet :
d
Alphabet is a consonant

Explanation: In this programming, we use the Switch case to check an alphabet is a vowel or consonant

Hello, Friend We first write the program and compile them and run the program to check compiler error or run time error.
Please share the site and comment on your ideas and your suggestions. All suggestion was all welcome.
If any question or doubt in the programming please mention the comment.
Thank yours very much.

ShareTweetPin
admin

admin

Related Posts

Programming Language

Armstrong number in c

November 12, 2022
Program to find out the grade and percentage calculator in c
Programming Language

Program to find out the grade and percentage calculator in c

March 6, 2022
Programs in c

how to find quotient and remainder in c program

April 21, 2020
.Net

Difference between FOPs and OOPs

April 16, 2020
Programming Language

How to start learning the first programming language

February 9, 2020
Programs in c

Sum of digits of a number until the sum is reduced to 1 digit in c

April 16, 2020
Next Post

Java program to convert decimal to binary with explanation

Program to check a letter is vowel or consonant in java

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

I agree to the Terms & Conditions and Privacy Policy.

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c++

    0 shares
    Share 0 Tweet 0
  • Java program to perform sum of digits until single digit is obtained

    0 shares
    Share 0 Tweet 0
ADVERTISEMENT
C, C++ & Java Programming tutorial with example Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • Armstrong number in c
  • Program to find out code of grade and percentage calculator in Java
  • Program to find out the grade and percentage calculator in cpp

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.