Question: You have been given 8 C files, each has the same logic, expressed in different ways. Each of the files is incomplete, marked by TBD

You have been given 8 C files, each has the same logic, expressed in different ways. Each of the files is incomplete, marked by TBD.
You must replace each TBD entry with appropriate C code. You must NOT alter any of the existing lines. You are only allowed to replace each TBD line with new lines.
Each of the C programs do exactly the same task. Given a list of numbers on the command line, they find the sum, sum of squares and the sum of cubes. You do not have to add error checking. You can safely assume that all numbers are given nicely as integers on the command line and are in the range of -100to 100.
sum3.c
// gcc -Wall sum3.c -o sum3
//./sum348-5020
// prints: Sum=27 Sum2=505 Sum3=8451
#include
#include
typedef struct {
int x; // Sum
int y; // Sum squares
int z; // Sum cubes
} sum_t;
static sum_t *sum3(int argc, char *argv[]){
static sum_t sum;
TBD
return
}
int main(int argc, char *argv[]){
sum_t *m;
TBD
printf("Sum=%d Sum2=%d Sum3=%d
", m->x, m->y, m->z);
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!