#include<stdio.h>
int main()
{
int marks[5][5]={{95,93,97,87,94},
{87,89,88,85,83}};
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 5; j++)
{
printf("The value of %d, %d value of the array is %d\n",i,j,marks[i][j]);
}
}
return 0;
}
Comments
Post a Comment