0
Regarding data structures
What is main difference in learning data structures with C and with python
1 Resposta
+ 1
In C it is more complicated than in python cause C is more low level than python. You need to use the correct data type and cant just make a list with different datatypes like in python (but that is possible if you use structs).
You may also need to deal with pointers and memory allocation. In python you dont need to deal with that.