#include "../../routines/machine.h"
#include <stdlib.h>
Include dependency graph for ex9c.c:
Go to the source code of this file.
Definition at line 9 of file ex9c.c.
References a, i, m, malloc(), and n.
00011 { 00012 int i ; 00013 *n=5 ; 00014 *m=3 ; 00015 *a= ( int *) malloc( (unsigned) (*m)*(*n) *sizeof(int)); 00016 for ( i= 0 ; i < (*m)*(*n) ; i++) (*a)[i] = i ; 00017 }
Here is the call graph for this function: