Single answer: What would be the output at LINE C and LINE P…

Single answer: What would be the output at LINE C and LINE P when the program below executes? #include #include int value = 0;void *runner(void *param) {  value = 5;  printf(“%d”,value); /* LINE C */  pthread_exit(0);}int main(int argc, char *argv[]) {  pid_t pid;  pthread_t tid;  pthread_attr_t attr;  pthread_attr_init(&attr);  pthread create(&tid,&attr,runner,NULL);  pthread_join(tid,NULL);  printf(“%d”,value); /* LINE P */}