What are header files and what are its uses in C programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference b/w Structure & Array?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is a keyword?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What are the two types of functions in c?
What is main () in c language?
Can you please compare array with pointer?
Can we declare variable anywhere in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
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.
Explain how can I pad a string to a known length?