like t-- in while

PHOTO EMBED

Thu Jun 27 2024 09:41:00 GMT+0000 (Coordinated Universal Time)

Saved by @karticksriram #c

#include <stdio.h>

int main(void) {
	// your code goes here
	int t;
	scanf("%d",&t);
	while(t--)
	{
	    int x;
	    scanf("%d",&x);
	    if(x+3<=10)
	    {
	        printf(" yes \n");
	    }
	    else
	    {
	        printf(" no \n");
	    }
	}
	return 0;
}
content_copyCOPY

its simply good to use t-- in while.