Examveda
Examveda

In this program the allocated memory block can store
#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

Answer: Option D


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux