#include #include #include int main(int argc, char *argv[]) { int strIndex = 0; //Declare an array of strings and set them to empty strings. char ArrayStrings[5][32] = {"","","","",""}; //Strcat string to contain the final string. char String[512] = "C:\\Documents and Settings\\"; srand(time(NULL)); for(strIndex = 0; strIndex < 5; strIndex++) { printf("Give me the string[%d]:", strIndex); fgets(ArrayStrings[strIndex], sizeof(ArrayStrings[strIndex]), stdin); ...