parent id

download parent id

of 1

Transcript of parent id

  • 8/15/2019 parent id

    1/1

    #include#include#includeint main(){

    pid_t myPid;pid_t myParentPid;gid_t myGid;uid_t myUid;myPid = getpid();myParentPid = getppid();myGid = getgid();myUid = getuid();printf("\nMy process id is %d",myPid);printf("\n My Parent's process id is %d",myParentPid);printf("\n My group id is %d",myGid);printf("\n My user id is %d",myUid);return 0;

    }