Question: The code shown below is compiled and executed, which part of the process will hold the int variable sum? a. text b. data c. heap

The code shown below is compiled and executed, which part of the process will hold the int variable sum?

The code shown below is compiled and executed, which part of the

a. text

b. data

c. heap

d. stack

e. BSS

long sum = 0; void do_work(int); int main(int argc, char **argv) { struct tms t; int n = 100000; do_work(n); times (&t); printf("system time: %ju ticks ", (uintmax_t) t.tms_stime); return 0; } void do_work(int n) { long i; int fd; char buf[1024]; for (i = 1; i

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!