[SPCA] Fixes a few errors

This commit is contained in:
2026-01-25 08:11:16 +01:00
parent eb6240c26e
commit 0770c76ef3
11 changed files with 30 additions and 11 deletions

View File

@@ -4,7 +4,7 @@
int main( int argc, char *argv[] ) {
int data[ 10 ]; // Initialize array of 10 integers
data[ 5 ] = 5; // element 5 is now 5
*data = 10; // element 0 is now 5
*data = 10; // element 0 is now 10
printf( "%d\n", data[ 0 ] ); // print element 0 (prints 10)
printf( "%d\n", *data ); // equivalent as above
printf( "%d\n", data[ 5 ] ); // print element 5 (prints 5)