I was wondering if someone could point me in the right direction here with my code.The objective of the program is to ask the users name and display their name before asking them a question. The program ask the user if "Europe is bigger than Asia?"

"The program must include 2 string answers(one if user is correct, and one if user is wrong)in a 2-D array, and should print out the proper answer from the array after getting the user‟s answer"
Code:
#include <stdio.h>
#include <string.h>
int main(void)
{
	int i,j;
	char  choice[BUFSIZ], name[BUFSIZ];
    char T[23] = {"Your answer is wrong."};
	char F[24] = {"Your answer is correct!"};

       
        printf("What is your name ?");
        gets(name);
        puts("Hello");
        puts(name); 
        printf("Is Europe larger than Asia? (T) or (F):");
        //scanf("%s", choice);
		gets(choice);
		gets(T);
		gets(F);
		for(i=0; i<24; i++)
		{
		if( strcmp( choice , F ) == 0 )
        puts(T[i]); 
		
	    // printf("%s", F);
		else if (strcmp(choice , F) < 0)
            putchar("\n");
			puts(F[i]);
		}
	// printf("%s", T);

getchar();
return 0;
    
}