Answer:
A. 2
Explanation:
The food function in the C source code uses two for loop statements to fill and array of size 100 with 100 values ranging from 1 to 100 and the second to get the total sum to the values in the array. With this, two program paths are created.
Answer
The answer and procedures of the exercise are attached in the following archives.
Step-by-step explanation:
You will find the procedures, formulas or necessary explanations in the archive attached below. If you have any question ask and I will aclare your doubts kindly.
Answer:
Option A is the correct answer.
Explanation:
Not entirely sure what you want to achieve, but consider this program:
var a = 'foo';
var b = 'bar';
var c = { first : a, second : b };
console.log(JSON.stringify(c, null, 4));
A json object c is constructed using the values from variables a and b. Is this what you mean?