to write a program, that finds the minimum total number of
shelves, including the initial one, required for this
loading process.

The packets are named A, B, C, D, E ……..

Any numbers of packets with these names could be kept in the
shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK].

All packets are to be loaded on cars. The cars are lined in
order, so that the packets could be loaded on them. The cars
are also named [A, B, C, D, E,………….].

Answer Posted / sri

overaj is a boy......murali is ove's lover............pls
copy this code and u will get the answer............

Is This Answer Correct ?    18 Yes 18 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

explain what are actual arguments?

637


Why header files are used?

646


What does 1f stand for?

614


write a program to create a sparse matrix using dynamic memory allocation.

4373


What is property type c?

605






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 ?????? */ }

1620


Write a factorial program using C.

645


Is stack a keyword in c?

637


What is #define size in c?

648


What is difference between function overloading and operator overloading?

661


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

669


Write a program to print fibonacci series using recursion?

587


what is the difference between class and unio?

1862


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7410


Explain what is a stream?

609