[SPCA] Restructure, intro to C continued

This commit is contained in:
2026-01-05 16:48:36 +01:00
parent 4a02e20218
commit 433111833c
16 changed files with 154 additions and 9 deletions

View File

@@ -13,4 +13,5 @@ int main( int argc, char *argv[] ) {
printf( "Arg %d: %s\n", i, argv[ i ] ); // Outputs the i-th argument from CLI
get_user_input_int( "Select a number" ); // Function calls as in any other language
return 0; // Return a POSIX exit code
}