There are 3 baskets of fruits with worng lables,one basket
has apple,another basket has orange,another has combination
of apple and orange,what is the least way of interchange
the lables.
Answer Posted / priya
Smell the baskets : and change the labels!
Apple doesnt smell like oranges, so its easy . Why
Complicate it!!!
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
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 time and space complexities of merge sort and when is it preferred over quick sort?
why return type of main is not necessary in linux
What are formal parameters?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is an auto keyword in c?
what is ur strangth & weekness
What is return type in c?
What is the mean of function?
What is the explanation for modular programming?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is modifier & how many types of modifiers available in c?
write a program to create a sparse matrix using dynamic memory allocation.
How can I do serial ("comm") port I/O?
What is this pointer in c plus plus?