memory allocation in C
-
how do you allocate memory in C? (not C++) "new" is not supported in C.
-
how do you allocate memory in C? (not C++) "new" is not supported in C.
-
how do you allocate memory in C? (not C++) "new" is not supported in C.
-
how do you allocate memory in C? (not C++) "new" is not supported in C.
erm ... look at
malloc
andfree
( and associated function, calloc, realloc, ... )
Maximilien Lincourt "Never underestimate the bandwidth of a station wagon filled with backup tapes." ("Computer Networks" by Andrew S Tannenbaum )
-
erm ... look at
malloc
andfree
( and associated function, calloc, realloc, ... )
Maximilien Lincourt "Never underestimate the bandwidth of a station wagon filled with backup tapes." ("Computer Networks" by Andrew S Tannenbaum )
loud and clear. doing it as we speak.