Answers for "malloc 2d array c"

C
2

c malloc for 2d array

#include <stdlib.h>

	int **array;
	array = malloc(nrows * sizeof(int *));
	if(array == NULL)
		{
		fprintf(stderr, "out of memoryn");
		exit or return
		}
	for(i = 0; i < nrows; i++)
		{
		array[i] = malloc(ncolumns * sizeof(int));
		if(array[i] == NULL)
			{
			fprintf(stderr, "out of memoryn");
			exit or return
			}
		}
Posted by: Guest on May-07-2021

Code answers related to "C"

Browse Popular Code Answers by Language