added space between results

This commit is contained in:
array-in-a-matrix 2022-12-06 13:57:48 -05:00
parent 858990447e
commit 5fa84b93fb
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ int main(int num_arg, char **args)
double zero_1_ptr = numerator_1 / (2 * num_A);
double zero_2_ptr = numerator_2 / (2 * num_A);
printf("%g %g\n", zero_1_ptr, zero_2_ptr);
printf("%g\t %g\n", zero_1_ptr, zero_2_ptr);
};
};
return 0;