Posts by Felipe Rezende • 11 points
1 post
- 
		1 votes0 answers397 viewsQ: Comparison of matrix and vector C/C++I need to compare a user-inserted op vector with the top 10 columns of each row of a 12x12 array. for(k=0; k<10; k++){ for(i=0; i<12; i++){ for(j=0; j<10; j++){ if(op[k]==d[i][j]){ if(i==1)…