Answer:
vista
Explanation:
the other three I have used before
In a file extension, it tells what type of file it is and tells what compiler to run the code.
Answer:
client
Explanation:
The client makes a request for a service, and a server performs that service.
Answer:
mouse, track ball, stick, touch pad, tablet
Answer:
Replace /* Your code goes here */ with
for(i =0; i<NUM_VALS; i++)
{
printf("%d", origList[i]*offsetAmount[i]);
printf(";");
}
Explanation:
The first line is an iteration statement iterates from 0 till the last element in origList and offsetAmount
for(i =0; i<NUM_VALS; i++)
{
This line calculates and print the product of element in origList and its corresponding element in offsetAmount
printf("%d", origList[i]*offsetAmount[i]);
This line prints a semicolon after the product has been calculated and printed
printf(";");
Iteration ends here
}