The number of arguments taken as input which allocating memory dynamically using malloc() is ___________

The number of arguments taken as input which allocating memory dynamically using malloc() is ___________ Correct Answer 1

An example of memory allocated using malloc(): (int*)malloc(3*sizeof(int) It is clear from the above example that malloc() takes only one argument as input, that is the number of bytes to be allocated.

Related Questions