Answered step by step
Verified Expert Solution
Question
1 Approved Answer
c programming Based on the code from the chapter Memory management using Makefiles, we want to compile the theme by programming using the Makefile file
c programming
Based on the code from the chapter Memory
management using Makefiles, we want to compile
the theme by programming using the Makefile file
Run the make command Run the make command
again Has any order been executed?
Change
the value of the MIN_VAL macro to the
utils h file Run the make command again Why
does not the executable file update?
Change
the Makefile file to get the object files (with
the o extension) also to keep in mind the header
files (with the h extension) that they depend on 2
points)
MEMORY MANAGEMENT USING MAKEFILES utils.h x #define MIN_VAL 5 1 2 #define MAX_VAL 3 3 4 int vect_gt (int*, int, int); 5 int vect_lt (int*, int, int); 1 2 3 4 |{ 5 6 7 utils.cx #include int vect_gt (int *v, int n, int val) if (n < 0) return 0; return v[n] > val? 1 + vect_gt (v, n 1, val) vect_gt (v, n 1, val); 8 } 9 10 int vect_lt (int *v, int n, int val) 11 12 if (n < 0) 13 return 0; 14 return v[n] < val ? 1 + vect_lt (v, n - 1, val) vect_lt (v, n- 1, val); 15
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started