Answers for "how to print the process id in c"

0

how to print the process id in c

int p_id,p_pid;
    
    p_id=getpid();  /*process id*/
    p_pid=getpid(); /*parent process id*/
Posted by: Guest on October-03-2020

Browse Popular Code Answers by Language