adplus-dvertising
frame-decoration

Question

Choose a correct Syntax for malloc() function to allocate memory to an array at run time.

a.

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

b.

int *p;
p = (int*)malloc(10,sizeof(int));

c.

int *p;
p = (int*)malloc(sizeof(int), 10);

d.

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

Answer: (a).int *p;
p = (int*)malloc(10*sizeof(int));

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Choose a correct Syntax for malloc() function to allocate memory to an array at run time.

Similar Questions

Discover Related MCQs

Q. What is the function used to allocate memory to an array at run time without initializing array elements?

Q. What is the function used to allocate memory to an array at run time with Zero initial value to each?

Q. If an integer array pointeris incremented, how many bytes will be skipped to reach next element location?

Q. What is a multidimensional array in C Language?

Q. What is the need for C arrays?

Q. Can we change the starting index of an array from 0 to 1 in any way?

Q. What happens when you try to access an Array variable outside its Size?

Q. What is the value of an array element which is not initialized?

Q. An entire array is always passed by ___ to a called function.

Q. What is an array Base Address in C language?

Q. An array Index starts with

Q. What are the Types of Arrays?

Q. Choose a correct statement about C language arrays.

Q. What is an Array in C language?

Q. Is the NULL pointer same as an uninitialised pointer?

Q. Are the three declarations char **apple, char *apple[], and char apple[][] same?

Q. Choose the best one.
Prior to using a pointer variable

Q. Comment on this:
const int *ptr;

Q. What is wild pointer?

Q. How can you write a[i][j][k][l] in equivalent pointer expression?