why we are using the fork command?.. how it works?
Answer / achal
In linux fork() system call is used to create a child
process. The Child process inherits some properties of its
parent and operates in a separate memory space
| Is This Answer Correct ? | 5 Yes | 0 No |
why does the execution of a c++ program start with main()???
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");
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
Is stl open source?
write a program that input four digit no and finds it is palindrome or not
How can you create a bulleted list, numbered list and an outline by using bullets and numbering command. Explain with the help of example.
write a program that input four digit number and find how many 7 that number contains
Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
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
what is use of for loop?
write a c++ program to create an object of a class called employee containing the employee code name designation basic salarry HRA Da gross salary as data 10 such objects "members process "
Difference between Structure and Class in C++?