-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiArray.c
More file actions
40 lines (36 loc) · 836 Bytes
/
MultiArray.c
File metadata and controls
40 lines (36 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* =====================================================================================
*
* Filename: MultiArray.c
*
* Description:
*
* Version: 1.0
* Created: 13/11/2021 14:03:51
* Revision: none
* Compiler: gcc
*
* Author: Jwtiyar Nariman (), jwtiyar@gmail.com
* Organization:
*
* =====================================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int main()
{
int derece [][3] = { //pewyste jmarey cplumn dyary bkey eger na compile nakat ( nazanm bo)
{12,13,14},
{15,16,17}
};
//printf("%d ",derece[0][2]);
for (int i=0; i < 2; i++)
{
for (int j=0; j <3; j++)
{
printf("%d ", derece[i][j]);
};
printf("\n"); // Eme bo eweye wekw table derchet listeke
};
return 0;
}