[SPCA] Restructre, some notes

This commit is contained in:
2026-01-04 13:59:33 +01:00
parent c7618f38a4
commit 4550168877
9 changed files with 22 additions and 10 deletions

View File

@@ -12,5 +12,5 @@ int main( int argc, char *argv[] ) {
for ( int i = 0; i < argc; i++ ) // For loop just like any other sane programming language
printf( "Arg %d: %s\n", i, argv[ i ] ); // Outputs the i-th argument from CLI
get_user_input_int( "Select a number" );
get_user_input_int( "Select a number" ); // Function calls as in any other language
}

View File

@@ -25,12 +25,12 @@ int get_user_input_int( char prompt[] ) {
while ( input_data > 1 ) {
input_data -= 1;
printf( "Hello World" );
printf( "Hello World\n" );
}
do {
input_data -= 1;
printf( "Bye World" );
printf( "Bye World\n" );
} while ( input_data_copy > 1 );
return 0;