I have an array of strings char string[n][MAX_FILE_NAME] and in each string I want to initialize it with the name of a bunch of files I have. string[0] should be "txt_0", string[1] = "txt_1" etc.

But I don't know how to construct the string names beginning with txt_ and ended in the int counter value.