Go Program to Find Character is an Alphabet

Write a Go Program to check or find whether the given character is an Alphabet or not. The unicode package has an IsLetter function to check the alphabet. We used the If else statement (if unicode.IsLetter(alr)) along with IsLetter to find the given Rune is an alphabet or not. package main import ( “bufio” “fmt” … Read more