Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Question 1 1 pts Consider the following 3 code fragments 1) int *ptr = malloc (

ID: 3591654 • Letter: Q

Question

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

Explanation / Answer

malloc, calloc, realloc all three functions are used for dynamically memeory allocation in C language.

All above 3 code fragments are correct with NULL check handeld.

Correct Answer: 1, 2 and 3

Thanks a lot. Please let me know if you have any doubt.

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote