C語言本身不難, 只有32個keywords
難的是compiler/linker, runtime, platform/architecture
一般我們會考這些, 而不是語言本身
想學習C, 我會建議從CPython入手
常用的CPython runtime, 整個都是用C寫的
建議你
1. Snyc source and compile
學習基本toolchain
2. 造一個python module
https://docs.python.org/3/extending/extending.html
3. trace code
從Py_Initialize()一路看到怎麼import module
還有如何用function pointer做polymorphism
大概花一個月, 祝好運