mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 02:26:59 +08:00
7 lines
115 B
C
7 lines
115 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
printf("Greetings from: %d\n", getpid());
|
|
return 0;
|
|
}
|