I\'m trying to convert a piece of code from Java to C and I got stuck here, trying to get a character at each position.
char ch; line += \' \'; while (pos
You can access the values as though the String was an array.
char str[] = "Hello World"; printf("%c", str[0]);