CH-230-A Programming in C and C++ C/C++: Dr. Kinga Lipskoch
CH-230-A Programming in C and C++ C/C++: Dr. Kinga Lipskoch
Lecture 4
Fall 2019
Dynamic Memory Allocation Projects Libararies
char **table
1 int i ;
2 for ( i = 0; i < N ; i ++)
3 free ( table [ i ]) ;
4 free ( table ) ;
const Examples
Libraries