fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int vetor[4][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
  5. printf("%d", vetor[1][0] + 1 + vetor[3][0]);
  6. }
  7.  
  8. //https://pt.stackoverflow.com/q/332158/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
15