-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
214 lines (184 loc) · 5.11 KB
/
main.c
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
Project 50 - Matriz String manipulation in the extreme "/
Description
This program asks for matrix size input initially;
then it asks for matrix values;
display matrix with letter; Converts it to integers;
and, finally shows how to use pointers to scan a matrix.
******************************************************************
Output:
Please, enter the matrix m0[i][j] size: 5
We'll populate it with ASCII letter from 97:
Here is the matrix: m0[5] x [5]
a b c d e
f g h i j
k l m n o
p q r s t
u v w x y
Please enter 25 numbers for m1[5][5]:
Enter value for m1[0][0]:1
Enter value for m1[0][1]:1
Enter value for m1[0][2]:1
Enter value for m1[0][3]:1
Enter value for m1[0][4]:1
Enter value for m1[1][0]:2
Enter value for m1[1][1]:2
Enter value for m1[1][2]:2
Enter value for m1[1][3]:2
Enter value for m1[1][4]:2
Enter value for m1[2][0]:3
Enter value for m1[2][1]:3
Enter value for m1[2][2]:3
Enter value for m1[2][3]:3
Enter value for m1[2][4]:3
Enter value for m1[3][0]:4
Enter value for m1[3][1]:4
Enter value for m1[3][2]:4
Enter value for m1[3][3]:4
Enter value for m1[3][4]:4
Enter value for m1[4][0]:5
Enter value for m1[4][1]:5
Enter value for m1[4][2]:5
Enter value for m1[4][3]:5
Enter value for m1[4][4]:5
Here is the 25 elements entered for m1[5][5]:
1 1 1 1 1
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
5 5 5 5 5
Matrix m2[2][13] is populated by letters elements:
a b c d e f g h i j k l m
n o p q r s t u w v x y z
Converting Matrix m2[2][13] to integers (ASCII Table):
97 98 99 100 101 102 103 104 105 106 107 108 109
110 111 112 113 114 115 116 117 119 118 120 121 122
Using Pointer to scanning a matrix m3[3][3]:
m3[0][0] = 1
m3[0][1] = 2
m3[0][2] = 3
m3[1][0] = 4
m3[1][1] = 5
m3[1][2] = 6
m3[2][0] = 7
m3[2][1] = 8
m3[2][2] = 9
******************************************************************
Edited by J3
Date Jul, 17/2020
*/
#include <stdio.h>
char letter1;
char letter2;
int res;
int size = 10;
int i, j, k;
char m0[10][10];
int main()
{
printf("Please, enter the matrix m0[i][j] size: ");
scanf("%i", &size);
int y = size * size;
printf("We'll populate it with ASCII letter from 97:\n");
printf("Here is the matrix: m0[%i] x [%i]\n", size, size);
int x = 97;
for(i = 0; i < size; i++)
{
for(j = 0; j < size; j++)
{
m0[i][j] = x;
x++;
}
}
/* Printing */
for(i = 0; i < size; i++)
{
for(j = 0; j < size; j++)
{
printf("%c\t", m0[i][j]);
}
printf("\n");
}
for(i = 0; i < size; i++)
{
for(j = 0; j < size; j++)
{
for(k = 0; k < size; k++)
{
m0[i][j];
}
}
}
printf("\nPlease enter %d numbers for m1[%d][%d]:\n", y, size, size);
/* 2D array declaration*/
/* 2D array declaration*/
int m1[size][size];
/* Counter variables for the loop */
int i, j;
for(i=0; i<size; i++)
{
for(j=0;j<size;j++)
{
printf("Enter value for m1[%d][%d]:", i, j);
scanf("%d", &m1[i][j]);
}
}
/* Displaying array elements */
printf("\nHere is the %d elements entered for m1[%d][%d]:\n", y, size, size);
for(i=0; i<size; i++)
{
for(j=0;j<size;j++)
{
printf("%d\t", m1[i][j]);
}
printf("\n");
}
/* Populating a matrix with letters */
printf("\nMatrix m2[2][13] is populated by letters elements:\n");
char m2[2][13] =
{
{'a','b','c','d','e','f','g','h','i','j','k','l','m'},
{'n','o','p','q','r','s','t','u','w','v','x', 'y','z'}
};
for (int i=0; i<2; i++)
{
for(j=0; j<13; j++)
{
printf("%c\t",m2[i][j]);
}
printf("\n");
}
/* Converting a matrix for integers */
printf("\nConverting Matrix m2[2][13] to integers (ASCII Table):\n");
for (int i=0; i<2; i++)
{
for(j=0; j<13; j++)
{
printf("%i\t",m2[i][j]);
}
printf("\n");
}
/* Using pointers: */
/* To use pointer, just declare it and pointing it to initial address of matrix */
printf("\nUsing Pointer to scanning a matrix m3[3][3]:\n");
// 2d array
int m3 [3][3] = { { 1, 2, 3 }, { 4, 5, 6 }, {7, 8, 9} };
/* Declaring the pointer to integer as NULL */
int *pointer = NULL;
/* Pointing the address of the initial value of matrix -> m3[0][0] */
/* You can also write *m3 */
pointer = &m3[0][0];
/* Loop of row */
for (i = 0; i < 3; ++i)
{ /* Loop for column */
for (j = 0; j < 3; ++j)
{
/*Read element of 2D array*/
//printf("m3[%d][%d] = %d\n", i, j, *(pointer + ( i + j)));
printf("m3[%d][%d] = %d\n", i, j, *pointer++);
//printf("m3[%d][%d] = %d\n", i, j, *pointer);
//pointer++;
}
}
return 0;
}