Help me in solving BTRYHLTH problem

My issue

My code

#include <stdio.h>

int main() 
{

int T;

scanf("%d", &T);

 int i;
    
for (i=0; i<T; i++);
{
    int X;
    
    scanf("%d", &X);

    
    if (X>=80)
    {
        printf("yes");
        
    }
    
    else
    {
        printf("No");
    }
}





	return 0;
}


Problem Link: BTRYHLTH Problem - CodeChef

@stutig
U should print “\n” after each test case to leave line.

it still didn’t work after adding \n to test cases. The problem is in output it is only able to answer yes for the first test case and does not answer yes or no for other test cases

@stutig
U have put ; in the end of for loop for test cases that is why u r getting wa.