ADITI
Company
Programming
Program
Q. What is the output of the following program
#include
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
}
Read Solution (Total 1)
-
- 0101010101010101
- 10 years agoHelpfull: Yes(0) No(0)
ADITI Other Question