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