How do you execute one program from within another?
Answers were Sorted based on User's Feedback
Answer / vishal
actually there are 6 varients of exec
like execv,execl,execp and 3 more
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / wizard
with the help of "exec" version.
look for man pages for more help
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kumar
by calling system call fork() to create child process which
handles the other.
| Is This Answer Correct ? | 2 Yes | 0 No |
Linking across directories?
Explain the advantage of executing a process in background?
Tell me set-user-id is related to (in unix)?
What is the condition required for dead lock in unix system?
Explain what is the process id for kernel process?
set-user-id is related to (in unix)
What is Inode.
Explain linking across directories?
Which ipc is the fastest in unix?
Which ipc is faster?
Explain fork() system call?
Predict the output of the following program code main() { fork(); printf("Hello World!"); }