Update 1st June 26

This commit is contained in:
2026-06-01 13:15:48 +00:00
parent 79415e38db
commit bdde9bd1ca
15 changed files with 89 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
int main(void)
{
int scores[1024];
for (int i =0; i < 1024; i++)
{
printf("%i\n", scores[i]);
}
}