Report Bug
Qus :

Consider the following code and How many bytes of memory will be allocated?

int *ptr = (int *)
malloc(10 * sizeof(int));

Qus

A. 10 bytes
B. 20 bytes
C. 80 bytes
D. 40 bytes


Solution
D. 40 bytes






Report Bug