Instructions on using strings in C

Strings are therefore declared as arrays of characters as follows (example taken from the Assignment #3 template program – timeClient.c): char buf[5000]; This statement declares an array of characters (a string) 5000 elements long. Note. Following what was said … ................
................