memset & sprintf stack usage
hi i have a question about stack memory.
is memset or sprintf function take space on ram stack memory?
For example i create global array like my_array[1024].
when i call memset in my private function, does memset function take extra space on ram(stack memory).
What is the disadvantage using a lots of memset or sprintf usage in my code?
