There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
5 21967Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
1 9019Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
3 7272Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
HCL,
1863what is diff between localstatic and globalstatis variable possible 2 use in another file...?
HCL,
2 4702in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
IBM,
11 31948Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
3 5793
How can I make it pause before closing the program output window?
how to make a scientific calculater ?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is meant by recursion?
What is else if ladder?
What is sizeof in c?
Explain modulus operator.
How can I get back to the interactive keyboard if stdin is redirected?
Why is struct padding needed?
what do you mean by inline function in C?
What is the difference between arrays and pointers?
Explain the use of fflush() function?
What is the use of getchar functions?
How can you tell whether a program was compiled using c versus c++?