8 lines
77 B
C
8 lines
77 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
main()
|
||
|
|
{
|
||
|
|
fprintf(stderr, "%d\n", getpid());
|
||
|
|
exit(0);
|
||
|
|
}
|