In this program the allocated memory block can store
<pre lang="c" line="1" cssfile="hk1_style">
#include<stdio.h>
#include<stdlib.h>

int main()
{
int *ptr;
ptr = malloc(10);
return 0;
}
a) int
b) char
c) float
d) all of the mentioned

Submitted by: Murtaza
d) all of the mentioned
Explanation:
When the malloc() is used without typecasting the default type is void*.
Submitted by: Murtaza

Read Online Linux Startup and Shutdown Job Interview Questions And Answers