This commit is contained in:
2024-03-05 14:19:35 +03:00
parent b199446865
commit a4b587dc41
31 changed files with 0 additions and 0 deletions

12
w3school/arrays.c Normal 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;
}