Write a single program that call three functions in c

Assignment Help Computer Engineering
Reference no: EM132213981

Write a single program that call three functions in C. Have the three functions each create/initialize an array but have one that declares and initialize a large array statically (from data segment), one that declares and initialize the same size array on the stack, and one that creates and initialize the same size array from the heap.

Call each of the subprograms a large number of times (at least 1,000) and output the average time required by each.

Explain your results. For example, what are the trade-offs, in time and space, when the allocation of an arrays occurs in the runtime stack rather than the heap or data/static segment?

By large size we mean > 10000000 Declaring and initialize the arrays via for loop in each function for int i=0; i< SIZE; i++) array[i]=i; For determining the time each takes could do something like the following:

#include <time.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/resource.h>
#include <sys/time.h>
struct rusage ruse;
#define CPU_TIME (getrusage(RUSAGE_SELF,&ruse), ruse.ru_utime.tv_sec + \
ruse.ru_stime.tv_sec + 1e-6 * \
(ruse.ru_utime.tv_usec + ruse.ru_stime.tv_usec))
int main(void) {
time_t start, end;
double first, second;
// Save user and CPU start time
time(&start);
first = CPU_TIME;
// Perform operations
/* . . . */
// Save end time
time(&end);
second = CPU_TIME;
printf("cpu : %.2f secs\n", second - first);
printf("user : %d secs\n", (int)(end - start));
}

Reference no: EM132213981

Questions Cloud

Write a code that inputs data from the standard input device : Write a C++ code that dynamically creates a two-dimensional array of five rows and seven columns and sales contains the base address of that array.
Produce a list of all medication codes used in the clinic : Produce a list of all medication codes used in the clinic, sorted alphabetically. Also, show the number of patients to whom each medication has been prescribed.
Create a view to join warehouse and inventory : Create a VIEW to join WAREHOUSE and INVENTORY and include all rows of WAREHOUSE in your answer, regardless of whether they have any INVENTORY.
Write a single python class that can by used to represent : Write a single Python Class that can by used to represent a Student object. It should be "constructible" with a name (in Last, First format) and a student ID.
Write a single program that call three functions in c : Write a single program that call three functions in C. Have the three functions each create/initialize an array but have one that declares and initialize .
Write a statement that reads a users input integer : Write a statement that reads a user's input integer into the defined variable, and a second statement that prints the integer. Do not end with a newline.
Difference between management and leadership : HOST6110 Hotel Management - difference between management and leadership? Explain and support your answer with a minimum of 3 examples and at least 3 references
Find the customers whose balance is greater than 250 : Find out how many times a customer generated an invoice - make sure the counted column heading reads "Invoices_generated" .
A method that takes no parameters and returns a string : Write a complete Java program with the following methods: A method that takes no parameters and returns a String. Request this String from the user, it is the

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd