Wed Jun 08 2022 12:50:34 GMT+0000 (Coordinated Universal Time)
Saved by @KanishqJ8
int main(){ int marks[2][4]={{45,234,8,7},{3,5,3,6}}; for(int i=0; i<2; i++){ for(int j=0; j<4; j++){ // printf("the value of %d,%d element od array is %d\n",i,j,marks[i][j]); printf("%d ",marks[i][j]); } printf("\n"); } return 0; }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments