/* * asciimath.c * by Zamyla Chan * * OMG -> O.M.G. * */ #include #include #include int main(int argc, string argv[]) { string s = GetString(); // print out each character of a string for (int i = 0; i < strlen(s) ; i++) { printf("%c. ", s[i]); } printf("\n"); return 0; }