12 lines
123 B
C
12 lines
123 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
fork();
|
|
fork();
|
|
fork();
|
|
printf("* ");
|
|
return 0;
|
|
}
|