Skip to content

Commit 1829cef

Browse files
committed
Create problem34.c
1 parent f3bfe3a commit 1829cef

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

problem34.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
Solved by
3+
Monicka, IT Dept.
4+
*/
5+
6+
#include<stdio.h>
7+
main()
8+
{
9+
int a[8][10],c=0,i,j;
10+
for(i=0;i<10;i++)
11+
for(j=0;j<8;j++)
12+
a[j][i]=c++;
13+
printf("%d",a[3][6]);
14+
}
15+
16+
output:51

0 commit comments

Comments
 (0)