This commit is contained in:
2023-09-23 22:20:41 +03:00
parent 609aa52e66
commit 66997adad5
42 changed files with 642 additions and 0 deletions

12
arrays.c Executable file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main() {
int myNumbers[] = {11, 22, 33, 44, 55};
printf("%d\n", myNumbers[4]);
int matrix[2][3] = { {1, 4, 9}, {2, 5, 7} };
printf ("%d\n", matrix[1][2]);
printf ("%p", &myNumbers);
return 0;
}