From the QnA for what a runtime is : What is "runtime"?
I understood about runtime a little. To make my understanding more robust, I'd like to ask new question.
Is C runtime an essential for any other programs like lua, haskell, java, etc... ?
I know C library implements not only standard C api but also system call wrappers also.
And I know lua runtime is no different than just a C program. This means lua runtime is based on C runtime.
So I guess any other language would be in the same situation. Because it is only C rumtime which can call system calls.
I considered for linux but I guess Windows and other Unix implementations must be same.
Am I right?