Which header file is required for dynamic memory functions like malloc()?

Memory Management

Quiz
•
Other
•
University
•
Medium
Kavinaya R
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
<stdlib.h>
<malloc.h>
<stdio.h>
<memory.h>
Answer explanation
All dynamic memory functions like malloc(), calloc(), realloc(), and free() are declared in <stdlib.h>.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which function is used to dynamically allocate memory in C?
alloc()
malloc()
memory()
free()
Answer explanation
malloc() allocates memory in bytes and returns a pointer to the first byte.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will malloc() return if it fails to allocate memory?
-1
0
NULL
Error
Answer explanation
On failure, malloc() returns NULL
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which function is used to free dynamically allocated memory?
delete()
dispose()
free()
clear()
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code?
int ptr = (int )malloc(sizeof(int));
*ptr = 5;
printf("%d", *ptr);
Compilation error
Address of ptr
5
Garbage Value
Answer explanation
Memory is allocated, value 5 is assigned and printed correctly.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which function initializes memory to zero?
malloc()
calloc()
realloc()
free()
Answer explanation
calloc() allocates memory and sets all bytes to zero.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of realloc()?
To allocate memory
To reassign memory
To change the size of previously allocated memory
To remove memory
Answer explanation
realloc() resizes a memory block that was previously allocated.
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Electrical Engineering

Quiz
•
University
13 questions
Bachelor Cyber 1 - Cours 3

Quiz
•
University
10 questions
Mastering C Programming Concepts

Quiz
•
University
7 questions
Memory Management

Quiz
•
University
15 questions
QUIZ 2 - CHAPTER 8 & 9

Quiz
•
12th Grade - University
11 questions
Ch.7 Activity-Based Costing

Quiz
•
University
15 questions
Project Management Frameworks Quiz

Quiz
•
University
13 questions
One-Dimensional Arrays Quiz

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade