Hello
Here is the correct code:
#include <stdio.h>
#include <string.h>
void main(void)
{
char file[1][200];
strcpy(file[0], "Testing 123");
printf("%c\n", file[0][0]); // Display the T
printf("%s\n", file[0]); // Display the entire string
}
There is no need to add &
If you want to use it, you have to add [ 0 ] in order to "cancel" the & character.