Created
August 6, 2012 02:37
-
-
Save markson/3269297 to your computer and use it in GitHub Desktop.
Test the getpid() function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <sys/types.h> | |
int main(void){ | |
pid_t this_process; | |
this_process = getpid(); | |
printf("this process value is %d and hex value if 0x%x\n", this_process,this_process); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it gives me a warning:
getpid.c:6:17: warning: implicit declaration of function 'getpid' is invalid in
C99 [-Wimplicit-function-declaration]
this_process = getpid();
^
1 warning generated.