Hierarchy decides which operator
a) is most important
b) is used first
c) is fastest
d) operates on largest numbers
explain what is a newline escape sequence?
Is c still used in 2019?
Is c is a procedural language?
How will you allocate memory to double a pointer?
How to write a multi-statement macro?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
How pointer is benefit for design a data structure algorithm?
Can you please explain the difference between strcpy() and memcpy() function?
What are the average number of comparisons required to sort 3 elements?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
print 1-50 with two loop & two print Statement
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.