The output of the following program is _________ .
void main()
{
int a = 10;
if(fork( ) = = 0)
a++;
printf("%d", a);
}
1
0, 10
2
10, 10
3
11, 10
4
11, 11
The output of the following program is _________ .
void main()
{
int a = 10;
if(fork( ) = = 0)
a++;
printf("%d", a);
}
0, 10
10, 10
11, 10
11, 11