1) Code and active line Active line: 1
1for (int fila = 1; fila <= 3; fila++) {
2 for (int col = 1; col <= 10; col++) {
3 int valor = fila * col;
4 printf("%d x %d = %d\n", fila, col, valor);
5 }
6}
Step 1: The outer for starts with row = 1.
Step 1 / 13
./for-anidadostdout