Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Name some shells that are commonly used in linux.

448


Is node js single-threaded?

247


What are two different version of jquery library? : jquery mobile

452


Define innate immunity.

147


How to assign the counters to the service contracts products?

1218






Differentiate between table and template ?

594


Explain the concept of node in drupal?

95


Hi Friends.. I need a small clarification i.e I need B.sc Degree(3 Years) and PGDCPA(1 Year).so its reaches US Education requirements right..? and 3 years of my degree was completed in 4 Year i.e actually passout is 2009-2011 but I passed in 2012.it is any problem for my admission and visa interview time.? Please help me out..? Thanks in Advance...

1591


When should structures be passed by values or by reference?

564


how ups works ? various parts of ups and working principle

1461


Hello, Is there any source from which i can get any live tutorial or trial of Automation tools?? Also i have a query that is there any certification course or exam available for Automation tools QTP and QC?

1321


What are the system fields you have worked with? Explain?

658


How to transform an XML document into another XML document?

551


how to include character strings in sql statements? : Sql dba

544


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include #include #include #include int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

1611