[solved]-Working Program Called Programc Following Three Parts Main Function B Function Prototype C Q39041292

You have a working program called program.c with the following three parts: (a) the main function, (b) the function prototype, and (c) the function definition. Using separate compilation, show below where you plan to put each part (a,b, and c) of the program in the following files. driver.c file.h: file.c Write the new include line that’s needed and tell me which file it should be placed in Write the unix commands to compile the above files into an executable Write a very basic Makefile below with a default target to help you manage the above program The macro MULT is defined below: #define MULT(a,b,c) ab/c; Show EXACTLY what the following statement would look like when the macro is fully expanded: MULT(x+y/t, xüt-z, utv-t) Mini Trace: What is the output of the following code snippet. int count = 5; int total= 1; do { total = count } while (count > 0); printf(“total – %dn”, total); Show transcribed image text You have a working program called program.c with the following three parts: (a) the main function, (b) the function prototype, and (c) the function definition. Using separate compilation, show below where you plan to put each part (a,b, and c) of the program in the following files. driver.c file.h: file.c Write the new include line that’s needed and tell me which file it should be placed in Write the unix commands to compile the above files into an executable Write a very basic Makefile below with a default target to help you manage the above program The macro MULT is defined below: #define MULT(a,b,c) ab/c; Show EXACTLY what the following statement would look like when the macro is fully expanded: MULT(x+y/t, xüt-z, utv-t) Mini Trace: What is the output of the following code snippet. int count = 5; int total= 1; do { total = count } while (count > 0); printf(“total – %dn”, total);
Expert Answer
Answer to You have a working program called program.c with the following three parts: (a) the main function, (b) the function prot… . . .
OR

