Re: Memory management in C programs

2015-01-30 Thread Frederik Braun
On 29.01.2015 21:32, ISHIKAWA, Chiaki wrote: > On 2015/01/12 22:46, Philip Chee wrote: >> "" >> One large difference between C and most other programming languages is >> that in C, you have to handle memory yourself rather than having a >> garbage collector do it for you. Ensuring that memory is al

Re: Memory management in C programs

2015-01-29 Thread ISHIKAWA, Chiaki
On 2015/01/12 22:46, Philip Chee wrote: "" One large difference between C and most other programming languages is that in C, you have to handle memory yourself rather than having a garbage collector do it for you. Ensuring that memory is allocated at the correct moment is not very difficult (and

Memory management in C programs

2015-01-12 Thread Philip Chee
"" One large difference between C and most other programming languages is that in C, you have to handle memory yourself rather than having a garbage collector do it for you. Ensuring that memory is allocated at the correct moment is not very difficult (and something that needs to be done manually i