Embedded Systems
anderson.lst
Associated article: C Multidimensional Arrays at Run Time
Tags: C/C++ Embedded Systems
_C MULTIDIMENSIONAL ARRAYS AT RUN TIME_
by Paul Anderson
[LISTING ONE]
#include <stdio.h>
#include <malloc.h>
char **dim2(row, col, size) /* creates 2D array */
int row, col;
unsigned size;
{
int i;
char **prow, *pdata;
pdata = (...


