Give the output of the following program
main()
{int ret;
ret=fork();ret=fork();ret=fork();ret=fork();
if(!ret)
printf("sun");
else
printf("solaris");
Answers were Sorted based on User's Feedback
Answer / rojoco
Imagining that the correct headers were included and the
closing bracket for the main function is added, it'll print
sun 8 times and solaris 8 times. You won't know the order
that they're printed in, it depends on the kernel scheduler
as to which process is run first.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / imran
I dont't think this will compile as its missing a closing
brace.
| Is This Answer Correct ? | 13 Yes | 5 No |
Answer / anupam mittal
The ans depend on the value returned by the fork function
there is no fork function defined so we can not predict he
ans
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pdp
It depends on the return value of fork(). If it is other
than 0 (zero), then the output is solaris else sun.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / prasanna
It will print solaris first and then sun... A sequence of
solarissun if there is a closing brace at the end..!!
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / saurabh singh
first of all it will not execute bec of 2 reasons:
1.it doesn't have a closing braces.
2.fork() function is not defined anywhere.so it will show
an error.
| Is This Answer Correct ? | 2 Yes | 5 No |
How stl is different from the c++ standard library?
What does stl stand for in basketball?
What two types of containers does the stl provide?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
How can you create a bulleted list, numbered list and an outline by using bullets and numbering command. Explain with the help of example.
Do you like to Submit Questions in Bulk under Same Category?? Then use our Bulk ListerDo you like to Submit Questions in Bulk under Same Category?? Then use our Bulk Lister
write a program that input four digit no and finds it is palindrome or not
What is the STL?
What is stl in oop?
How do you convert stl to steps?
What is 2*2?
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value