Answers

Question and Answer:

  Home  Linux Shutdown and Startup

⟩ 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

d) all of the mentioned

Explanation:

When the malloc() is used without typecasting the default type is void*.

 139 views

More Questions for you: