Kizspy | Question: 49
(Choose 1 answer)
What are the sizes of the memory blocks allocated for d and e?
int size = 100;
float *d = malloc(size);float *e = calloc(size, sizeof(float));
A. 400 bytes and 400 bytes
B. 400 bytes and 100 bytes
C. 100 bytes and 800 bytes
D. 100 bytes and 400 bytes