Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The code shown below is compiled and executed, which part of the process will hold the character array buf? a. text b. data c. heap

The code shown below is compiled and executed, which part of the process will hold the character array buf?

image text in transcribed

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

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_2

Step: 3

blur-text-image_3

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

Object Databases The Essentials

Authors: Mary E. S. Loomis

1st Edition

020156341X, 978-0201563412

More Books

Students also viewed these Databases questions