Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Access Patterns Database Interactions In Object Oriented Applications

Authors: Clifton Nock

1st Edition

0321555627, 978-0321555625

More Books

Students also viewed these Databases questions

Question

9. Describe the characteristics of power.

Answered: 1 week ago

Question

3. Identify and describe nine cultural value orientations.

Answered: 1 week ago