Answer:
The correct option for accessing the value in sarray[3] is : d) *(sptr+3)
Explanation:
a) *sptr[*3] is wrong option because its syntax is not right it will give errors.
b) *sptr+3 is also wrong option because it will add 3 to the value of sarray[0].
c) sptr+3 is wrong option because it will only access the address of sarray[3] not the value it contains.
d) *(sptr +3) is correct syntax for accessing value in sarray[3] by using pointer
Answer:
where are the step number. I can't find any
A software application development model that typically approaches software development as a continuous, changing process that has bug fixes, never-ending versions, and enhancements is Agile.
<h3>What is SDLC?</h3>
SDLC is an abbreviation for software development life cycle and it can be defined as a strategic methodology that defines the key steps, phases, or stages for the design, development and implementation of high quality software programs.
<h3>What is Agile software development?</h3>
In Agile software development, the software development team are generally more focused on the continuous production of working (active) software programs with less effort on documentation while creating bug fixes and never-ending versions.
In this context, we can infer and logically deduce that a software application development model that typically approaches software development as a continuous, changing process that has bug fixes, never-ending versions, and enhancements is Agile.
Read more on software development here: brainly.com/question/26324021
#SPJ1