I need to convert a string to a char array in C; how can I do this?
Or at least, how can I extract single chars from a string incrementally?
In this simple way
char str [10] = "IAmCute"; printf ("%c",str[4]);