What is the need of structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are operators in c?
What is spaghetti programming?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
write a program for fibonaci series by using while loop in c?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
write a program to find the largest and second largest integer from an array
what are the various memory handling mechanisms in C ?
Why can't I perform arithmetic on a void* pointer?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
main() { float a=3.2e40; printf("%d",a); }
what is C?
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.