Hacker News new | ask | show | jobs
by cozzyd 1940 days ago
Usually in embedded development you don't ever want to use dynamic allocation. Very few languages allow you to avoid dynamic allocation.
1 comments

yeah I know that, and I always wondered how they implement basic data structure like linked list or bst with static allocation. I guess that this will be never something really needed in an embedded system, and they can live with arrays and variables.