int* concat_tab(int n1,int t1[],int n2, int t2[]){ int *t3; t3 = (int*) malloc((n1+n2)*sizeof(int)); for (int i = 0; i < n1; i++){ *(t3+i)=*(t