Instructions on using strings in C

Knowing (from the above) how strings are organized in C, one can easily parse time data from a socket, since they are delivered as strings. In particular, one can read a string character by character and print it. For example, when timeClient.c delivers time in the following format: Tue Oct 4 11:59:43 2005. parsing it can be done as follows: ................
................