What does the function func do Count number of digits in a d
Solution
7) you have not provided func() code to answer this, it is not a built in method...
8)answer: c
explanation : to write a number , we simply write it in integer form, all other are indirect ways to represent 97
9)answer: c
explantion: the hierarchy order of the data types short<=char<int<float<double.. when a datatype is operated with another datatype through an operator , then the resultant value would be of type which has higher hierarchy... suppose in f/c, f is float, c is char, f is higher so resultant is float..
10)answer d
explantion: sizeof(count[0]) it returns the size of int that is 4bytes becaues c[0] is int.. sizeof(count) it returns the size of all elements that is (size of int*number of all elements).. that is why is we are dividing with size of int... c is also a correct answer

