diff --git a/C/main.c b/C/main.c
@@ -101,11 +101,11 @@ int main()
printf("\nThis program is a simple test for the following conjecture:\n");
printf("Let S: N -> N be the sum of the digits of a positive integer.\n");
printf("For all A and B in N, S(A + B) = S(A) + S(B) - 9k, where k is an integer.\n");
- printf("\nWhat value would you like to test the conjecture for? >");
+ printf("\nWhat value would you like to test the conjecture for? ");
scanf_s("%u", &MAX);
- printf("\nLOADING. . ");
+ printf("\nLOADING. . .");
clock_t start = clock(), end;
// Create the sums cache
@@ -123,7 +123,7 @@ int main()
thread_iters[i].start = i;
thread_iters[i].max = MAX;
thread_iters[i].interval = num_threads;
- err = pthread_create(&thread_ids[i], NULL, get_counter_example_iter, &thread_iters[i]);
+ err = pthread_create(&thread_ids[i], NULL, get_counterexpl_iter, &thread_iters[i]);
if (err) printf("Unable to create thread : %d", err);
}