package main import ( "bufio" "fmt" "os" "strings" ) func charCount(str string, c string) int { count := 0 s := strings.ToLower(str) c = strings.ToLower(c) for _, v := range s { if st...