17 lines
170 B
C
17 lines
170 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
# include <sys/types.h>
|
||
|
# include <unistd.h>
|
||
|
|
||
|
int main() {
|
||
|
fork();
|
||
|
|
||
|
if (fork()){
|
||
|
fork();
|
||
|
}
|
||
|
|
||
|
printf("A\n");
|
||
|
|
||
|
sleep(20);
|
||
|
}
|