+ 1
Which is the best way to store data in C?
Just like Data structure
2 Respuestas
+ 3
It depends on the type of data you want to store and the operations you want to do with your data.
For instance, if you want to be able to quickly get the biggest number from the set of numbers, you can use a “heap” data structure. Or if you want to be able to get the last added number, you’d better use stack.