Create a two-dimensional array at runtime: Difference between revisions

Line 102:
This style also supports more efficient memory utilization if you're only using a portion of the
array. If you only need the upper right half of a square array, you can do something like the following.
<lang c>#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
Anonymous user