. Explain the differences between fork() and exec() in C
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
1. fork(): Creates a new process (child) identical to the parent process.
2. exec(): Replaces the current process image with a new program.
| Is This Answer Correct ? | 0 Yes | 0 No |
code for copying two strings with out strcpy() function.
diff between exptected result and requirement?
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
second highest number in a given set of numbers
show how link list can be used to repersent the following polynomial i) 5x+2
What is the most efficient way to store flag values?
When should the const modifier be used?
main() { clrscr(); } clrscr();
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
What is pass by reference in functions?
What is anagram in c?
Explain how can I avoid the abort, retry, fail messages?