fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int tabla[10][10],i,j;
  5. for(i=0;i<10;i++){
  6. for(j=0;j<10;j++){
  7. tabla[i][j]=i+j;
  8. printf("%d \t", tabla[i][j]);
  9. }
  10. printf("\n");
  11. }
  12. }
Success #stdin #stdout 0s 5304KB
stdin
8
stdout
0 	1 	2 	3 	4 	5 	6 	7 	8 	9 	
1 	2 	3 	4 	5 	6 	7 	8 	9 	10 	
2 	3 	4 	5 	6 	7 	8 	9 	10 	11 	
3 	4 	5 	6 	7 	8 	9 	10 	11 	12 	
4 	5 	6 	7 	8 	9 	10 	11 	12 	13 	
5 	6 	7 	8 	9 	10 	11 	12 	13 	14 	
6 	7 	8 	9 	10 	11 	12 	13 	14 	15 	
7 	8 	9 	10 	11 	12 	13 	14 	15 	16 	
8 	9 	10 	11 	12 	13 	14 	15 	16 	17 	
9 	10 	11 	12 	13 	14 	15 	16 	17 	18