#include /* printf */ #include /* pid_t */ #include /* getpid */ int main() { pid_t /* aka int */ pid = getpid(); printf("%d", pid); return 0; }