Which of the following function declarations receives a pointer to a row of ten
ID: 3613070 • Letter: W
Question
Which of the following function declarations receives a pointer to a row of ten integers? void fun(int row[10]; void fun(int row[][10]; void fun(int* row[10]; void fun(int* row); void fun(int** row); Stamp coupling only the minimum required data from the calling function to the called function. passes data in arrays or as structures. passes, flags that may be used to direct the logic flow of a function. global variables to communicate between two or more functions. one function to directly access the data in another function. Which of the following is not a recommended test case for sorting? A nearly ordered list A random list A permutation list An ordered ascending list An ordered descending list Which of the following pointer notations accesses the second element in the third row of a two dimensional array? *(*ary + 3)+2) *(*(ary + 2) + 1) *(*ary + 2) + 3) *(*ary + 2) + 3) **ary [2] [3] Which of the following pointer arithmetic operations provides an index? ptr1 + ptr2 ptr1 - ptr2 Ptr-- Which of the following seek operations positions the file to the third integer in a file of integers? fseek(fpFile, sizeof(int),SEEK_SET); fseek(fpFile, sizeof(int)*,1), SEEK_SET); fseek(fpFile, sizeof(int),*2), SEEK_SET); Right-click to display spelling suggestions)-CUR); fseek(spfile, sizeof(int) *2), SEEK_CUR);Explanation / Answer
13) C 19)C 48)BRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.