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