(March 15, 2015 at 6:41 pm)bennyboy Wrote:(March 15, 2015 at 10:52 am)IATIA Wrote: C# just makes large memory consuming programs, but it does run quick and it also is multi-platform.This is true. I think it's how the garbage-handling works. But as a programmer, it's nice not to have to allocate your own memory. How many times in C have I sprung a leak because I had a stupid 1-off error in setting up an array or something like that? Hint: it's non-zero.
talk about memory allocations in C, it's a mess
and the fact that the scope of the array being only inside the method and you can't return an array from a method sucks, malloc() helps, but still all these things are so low leveled, they make you worry more about the low level crap, than the actual software problems.