22.Multidimensional array(2D)

#include<stdio.h>

int main(){
    int n_students=3;
    int n_subjects=5;
    int arr[3][5];
    for(int i=0; i<n_students; i++)
    {
        for(int j=0; j<n_subjects; j++)
        {
            printf("Enter the marks of student %d of subject %d\n",i+1,j+1);
            scanf("%d",&arr[i][j]);
        }
    }
       
    for(int i=0; i<n_students; i++)
    {
        for(int j=0; j<n_subjects; j++)
        {
            printf("The marks of student %d of subject %d is %d\n",i+1,j+1,arr[i][j]);
           
        }
    }

    return 0;

} 

Comments