// Prints a string's chars #include #include int main(void) { string s = "HI!"; printf("%c\n", s[0]); printf("%c\n", s[1]); printf("%c\n", s[2]); }