InterviewSolution
Saved Bookmarks
| 1. |
Consider the following ANSI C function:int SimpleFunction(int Y[], int n, int x){int total = Y[0], loopIndex;for (loopIndex=1; loopIndex<=n-1; loopIndex++) total=x*total +Y[loopIndex];return total;} Let Z be an array of 10 elements with Z[i]=1, for all i such that 0≤i≤9. The value returned by SimpleFunction(Z,10,2) is __________ .(A) 1023(B) 1024(C) 2047(D) 511 |
| Answer» | |