Memory Allocation

1

When we dynamically allocate memory is there any way to free memory during run time?

A. Yes
B. No

2

Can I increase the size of statically allocated array?

A. Yes
B. No

3

Can I increase the size of dynamically allocated array?

A. Yes
B. No

4

If malloc() successfully allocates memory it returns the number of bytes it has allocated.

A. True
B. False

5

malloc() returns a float pointer if memory is allocated for storing float's and a double pointer 

if memory is allocated for storing double's.

A. True
B. False