Here's my code:
#include<stdio.h>
int a[203];
int main(){
int t,i;
scanf("%d",&t);
for(i = 0;i<t;i++){
int n,temp,k;
scanf("%d",&n);
for(k =0;k<n;k++){
scanf("%d",&temp);
a[temp]+=1;
}
for(k =0;k<203;k++){
if(a[k]%2 !=0)
printf("%d",k);
}
}
}
Also, is there any way I can get the code to run in C99 mode?