how to write a c program to print list of fruits in
alpabetical order?
No Answer is Posted For this Question
Be the First to Post Answer
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
write a programming in c to find the sum of all elements in an array through function.
What is chain pointer in c?
What is the c language function prototype?
what is Structural oriented language? give some example of this language.....?
What is extern c used for?
What are compound statements?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
how to find out the reverse number of a digit if it is input through the keyboard?
find out largest elemant of diagonalmatrix