nt b rmal olu Program Analysis Use the following function fo
     nt b rmal olu- Program Analysis Use the following function for Problems 8-11, This function returns 0 or 1. int fives (int n) Declare objects. int result; Compute result to return if ((n965) 0) return 1; else return 0; 8. What is the value of fives (15) 9. What is the value of fives(26) t 10. What is the value fives(ceil(sqrt(62.5))) 11. (Hint: You don\'t need a calculator to determine this value.) are its limitations? Does the function work properly for all integers? If not, what  
  
  Solution
8)answer: 1
explation: function fives(15) returns 1, because mod(15,5) is zero
9)answer: 0
explation: function fives(26) returns 0, because mod(26,5) is one not equals to zero
10)answer: 0
explation: function fives(ceil(sqrt(62.5)) returns 0, because mod(8,5) is not equals to zero
11)answer: this function fives(n) works properly for all integers upto 65,535, because, data type int can store 0 to 65,535, this function will not work for all intgers that are greater than 65,535.

