Go Program to Check Character is Vowel or Consonant

Write a Go Program to check whether the given character is a vowel or consonant. Here, we used the If else statement to check the character is a, A, E, e, I, i, o, O, u, U. If True, Character is a Vowel; otherwise, it’s a consonant. package main import ( “bufio” “fmt” “os” ) … Read more