Your IP : 216.73.216.40


Current Path : /var/www/html/bibhas.ghoshal/lab_files/
Upload File :
Current File : /var/www/html/bibhas.ghoshal/lab_files/thread_example1.c

#include <stdio.h> 
#include <pthread.h> 
void *kidfunc(void *p) 
{ 
printf ("Kid ID is ---> %d\n", getpid( )); 
}

int main ( ) 
{ 
  pthread_t kid ; 
  pthread_create (&kid, NULL, kidfunc, NULL) ; 
  printf ("Parent ID is ---> %d\n", getpid( )) ; 
  pthread_join (kid, NULL) ; 
  printf ("No more kid!\n") ;
}