fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int marks[2][3]={{56,67,78},{78,67,56}};
  6.  
  7. for(int row=0;row<2;row++){
  8. for(int col=0;col<3;col++){
  9. printf("%d,%d",row,col);
  10. }
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
0,00,10,21,01,11,2