can you give me solution im not able to print exact output
My code
// Update the blanks below to solve the problem'
#include <stdio.h>
int main() {
int t;
int A,B,D,E;
char C[30];
int i = 1;
scanf("%d", &t );
while ( i >= t); {
scanf("%d %d", &A, &B );
scanf("%s", &C);
printf("%d %d %s ", A,B,C );
i = i++;
}
return 0;
}