Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create a program that allocates an array of integers (as above), frees them, and then tries to print the value of one of the

1. Create a program that allocates an array of integers (as above), frees them, and then tries to print the value of one of the array elements. Does the program run? What does valgrind tell you?

answer:

the program runs fin, but val grind gives me an error. invalid read of size 4 which means it tried to read 4 bytes. it telles me that its an invalid address located right after a block of 400 free'd

image text in transcribed
1 #include 2 #include 3 4 int main(int argc, char *argv) 5 { 6 int *input = (int *) malloc(100 *sizeof(int) ); 7 *input = 100; 8 free(input) ; 9 printf("printing free data; %d\ ", *input); 10 return 0; 11 }

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

Step: 3

blur-text-image

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions