Suppose we have a one dimensional array, named 'x', which contains 10 integers. Which of the following is the correct way to allocate memory dynamically to the array 'x' using malloc()?
Suppose we have a one dimensional array, named 'x', which contains 10 integers. Which of the following is the correct way to allocate memory dynamically to the array 'x' using malloc()? Correct Answer x=(int*)malloc(10*sizeof(int));
মোঃ আরিফুল ইসলাম
Feb 20, 2025