Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C Question 1 1 pts Consider the following 3 code fragments 1) int *ptr = malloc ( sizeof (int)*3); ptr[0] = 0; ptr[1] 0;

In Cimage text in transcribed

Question 1 1 pts Consider the following 3 code fragments 1) int *ptr = malloc ( sizeof (int)*3); ptr[0] = 0; ptr[1] 0; ptr[2] = 0; 2) int *ptrcalloc(1, sizeof (int)); if (ptr NULL) printf("Unable to allocate memory. "); exit(1) realloc(ptr, 3*sizeof (int)) if (ptrNULL) printf("Unable to allocate memory. "); exit(i) ptr[0]=0; ptr [ 1 ] = 0; ptr[2] 0; 3) int *ptr = calloc ( 3 , if (ptr == NULL ){ sizeof ( int ) ) ; printf("Unable to allocate memory. "); exit(1) Dynamically allocating an integer array of size 3 and initializing all its elements to O is safely done in code fragment(s) O 1 only O 1, 2 and 3 O 2 and 3 O 1 and 3 O 3 only

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

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

More Books

Students also viewed these Databases questions

Question

How do Dimensional Database Models differ from Relational Models?

Answered: 1 week ago

Question

What type of processing do Relational Databases support?

Answered: 1 week ago

Question

Describe several aggregation operators.

Answered: 1 week ago