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,………….].
Answers were Sorted based on User's Feedback
Answer / 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 |
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the purpose of main() function?
Differentiate between Macro and ordinary definition.
Tell me what are bitwise shift operators?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Is int a keyword in c?
write a program to display reverse of a number using for loop?
what is ram?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Which command is more efficient? *(ptr+1) or ptr[1]
How can variables be characterized?