[SPCA] Fix various errors

This commit is contained in:
2026-01-23 10:33:49 +01:00
parent b86fd00a60
commit 25b3381294
15 changed files with 36 additions and 23 deletions

View File

@@ -29,11 +29,11 @@ int get_user_input_int( char prompt[] ) {
printf( "Hello World\n" );
}
// Inversed while loop (executes at least once)
// Inverted while loop (executes at least once)
do {
input_data -= 1;
input_data_copy -= 1;
printf( "Bye World\n" );
if ( input_data_copy == 0 )
if ( input_data_copy == 10 )
goto this_is_a_label;
} while ( input_data_copy > 1 );