How to access in C++, the memory address of a variable declared in the language Lua???
in other words (example in written Lua):
X = 10
How to access the memory address of the variable X, which was declared on the Lua?
address = (&X) ?????????
Help me please!!