MCQ Practice

Which one of the following string will print first by this program? #include #include #include sem_t st; void *fun_t(void *arg); void *fun_t(void *arg) { printf("Linuxn"); sem_post(&st); pthread_exit("Bye"); } int main() { pthread_t pt; void *res_t; if(pthread_create(&pt,NULL,fun_t,NULL) == -1) perror("pthread_create"); if(sem_init(&st,0,0) != 0) perror("sem_init"); if(sem_wait(&st) != 0) perror("sem_wait"); printf("Examplen"); if(pthread_join(pt,&res_t) == -1) perror("pthread_join"); if(sem_destroy(&st) != 0) perror("sem_destroy"); return 0; }

A

Linux

B

Example

C

Can not be predicted

D

None of the mentioned

Correct Answer: A