Data in C and CPython: A comparison
In my last two articles (Data in CPython and Data in C), as it
turned out, I discussed two fundamental points in each language:
- What happens in an assignment operation (such as a=2)?
- Are separate copies of data created or references passed to the original when they are sent as function parameters?
In this article, I will summarize the findings by presenting a
comparative analysis. Read the entire article here.