asm_book/more/system_calls/getpid/main.cpp
2023-01-14 14:39:41 -06:00

10 lines
No EOL
156 B
C++

#include <iostream>
#include <unistd.h>
using std::cout;
using std::endl;
int main() {
cout << "Greetings from: " << getpid() << endl;
return 0;
}