24.03.2013, 00:37
I've been watching a lot of code and very frecuently i see that people declare a new string[128]; in almost every function that needto send any msg.
What's bad about having a global string[128] and use it in all functions? (so you dont have to allocate more and more stack memory in each function call)
What's bad about having a global string[128] and use it in all functions? (so you dont have to allocate more and more stack memory in each function call)