Я должен выполнить этот код вручную и вычислить вывод, я попробовал его и не смог выяснить, чего не хватает, вот код:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void *thread_function(void *arg) {
printf("Hello World :) \n");
exit(EXIT_SUCCESS);
}
int main(void) {
pthread_t mythread;
if(pthread_create(&mythread, NULL, thread_function, NULL)) {
fprintf(stderr, "Failure 1?\n");
exit(EXIT_FAILURE);
}
printf("I have to wait ? \n");
if (pthread_join(mythread, NULL)){
fprintf(stderr, "Failure 2 ?");
exit(EXIT_FAILURE);
}
printf("Goodbye Cruel World :(\n");
return 0;
}
Ожидаемый результат:
I have to wait ?
Hello World :)
Goodbye Cruel World :(
Вывод, который я получил:
I have to wait ?
Hello World :)
Почему код пропустил последний отпечаток?