Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. With the statement, int values[] = {1,2,3,4,5}; What is the name of the array? Group of answer choices a. {1,2,3,4,5} b. [] c. int
1. With the statement, int values[] = {1,2,3,4,5}; What is the name of the array? Group of answer choices
a. {1,2,3,4,5}
b. []
c. int
d. values
2. With the statement, int values[] = {10,9,8,7,6,5,4,3,2,1,0}; What is the size of the array?
a. 9
b. 10
c. unknown
d. 11
3. With the statement, int grades[] = {70,80,90,100,50}; What is the statement to print array element 50? Group of answer choices
a. printf(%d, grades[4]);
b. printf(%d, &grades[5]);
c. printf(%d, &grades[4]);
d. printf(%d, grades[5]);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started