. Explain the differences between fork() and exec() in C
Answer Posted / 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 |
Post New Answer View All Answers
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are shell structures used for?
Are pointers integers in c?
Differentiate between the expression “++a” and “a++”?
Why array is used in c?
How reliable are floating-point comparisons?
When should a far pointer be used?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Is c programming hard?
Explain how to reverse singly link list.
Is c high or low level?
What are the three constants used in c?
What does %c do in c?
When was c language developed?
In C programming, what command or code can be used to determine if a number of odd or even?