closed by
409 views

Related questions

1 votes
1 votes
2 answers
1
Warrior asked Nov 10, 2018
1,369 views
0 votes
0 votes
1 answer
4
Erwin Smith asked Apr 11, 2023
786 views
void main() { int n = 1; if(fork()==0) { n = n<<1; printf(“%d, “, n); n = n <<1; } if(fork()==0) n=n+700; printf(“%d, “,n); }Which of the following output is not ...