maze finally

This commit is contained in:
2025-10-14 05:00:53 +03:00
parent e4b41b298d
commit e092213ed4
6 changed files with 295 additions and 35 deletions

View File

@@ -9,7 +9,7 @@ int main (void)
printf("++ptr %d\n", ++ptr);
void *vptr = &x;
printf("void ptr %d\n", vptr);
printf("void ptr %d\n", *vptr);
return 0;
}