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 23077Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
1 9527Given 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 7939Write 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,
2250what is diff between localstatic and globalstatis variable possible 2 use in another file...?
HCL,
2 5329in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
IBM,
11 34654Would 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 6441
a program that can input number of records and can view it again the record
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Is it better to use a macro or a function?
What is the purpose of main( ) in c language?
What is indirection? How many levels of pointers can you have?
What is difference between union and structure in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
what is stack , heap ,code segment,and data segment
Why is c platform dependent?
What is the best style for code layout in c?
How can I get back to the interactive keyboard if stdin is redirected?
How can you tell whether two strings are the same?
Under what circumstances does a name clash occur?
Is it possible to have a function as a parameter in another function?