Instructions on using strings in C

int). One must remember, however, that the last element of a string (character array) is a null character (ASCII code ‘\0’) used to terminate the string – and this is a non-noticeable but fundamental difference. 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 ... ................
................