fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int matrice[5][3] = {
  6. {1, 2, 3},
  7. {4, 5, 6},
  8. {7, 8, 9},
  9. {0 ,5 ,4},
  10. {3 ,5 ,7}
  11. };
  12.  
  13. printf("%d\n", matrice[3][1]); // Affiche 5
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
5