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 23450Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
1 9675Given 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 8162Write 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,
2357what is diff between localstatic and globalstatis variable possible 2 use in another file...?
HCL,
2 5548in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
IBM,
11 35607Would 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 6685
Can true be a variable name in c?
What is a rvalue?
When a c file is executed there are many files that are automatically opened what are they files?
What are the functions to open and close file in c language?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is break statement?
What are the uses of null pointers?
What is a function in c?
Are pointers integer?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are inbuilt functions in c?
how do you programme Carrier Sense Multiple Access
What does node * mean?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
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?