#include #include void *thr_main(void *arg); int main(int argc, char *argv[]){ pthread_t thrID; pthread_create(&thrID, NULL, thr_main, NULL); pthread_join(thrID, NULL); return(0); } void *thr_main(void *arg){ printf("Hello World\n"); }