单选题
10. 有如下C语言程序
void * th_f(void * arg)
{
printf("Hello World");
pthread_exit(0);
}
int main(void)
{
pthread_t tid;
int st;
st = pthread_create(&tid, NULL, th_f, NULL);
if(st == 0)
printf("Oops, I can not create thread\n");
exit(NULL);
}
针对上述程序,下列叙述中哪一个是正确的?______