Skip to content
Snippets Groups Projects
Commit ac0c012a authored by Mohamed Yasar arafath K M's avatar Mohamed Yasar arafath K M :speech_balloon:
Browse files

Correct the code

parent 19ad98f6
No related branches found
No related tags found
No related merge requests found
#include<stdio.h>
int main(){
int arr[4][4],i,j;
printf("This is 4x4 dimension array\n");
printf("Enter the 4x4 array values :\n");
for(i=0;i<4;i++){
for(j=0;j<4;j++){
scanf("%d",&arr[i][j]);
}
}
printf("-----------");
printf("Values of the 4x4 array\n");
for(i=0;i<4;i++)
{
for(j=0;j<4;j++)
{
printf("%d\t",arr[i][j]);
}
printf("\n");
}
printf("\ndone");
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment