0
Does python have pointers?
4 odpowiedzi
+ 8
Python does work with pointers. The thing is that, Python is a high-level programming languages so pointers are abstracted in order to make programming simpler and allowing developers to worry less.
IIRC Python borders between 3rd-generation and 4-th generation programming language in terms of its level.
+ 2
Not directly. When you pass an argument to a function, you pass it by reference. When it is interpreted by c it becomes a pointer.
0
I see.. Thanks..
0
Okay..