sim-c icon indicating copy to clipboard operation
sim-c copied to clipboard

[BUG REPORT] Pointer to pointer not working

Open Chasmiccoder opened this issue 3 years ago • 0 comments

Pointer to a pointer implementation is incorrect: MAIN var a = 15 var *ptr = &a var **ptr2 = &ptr

END_MAIN

The above simc code should be valid, but it is throwing the following error: image

Note: This must be fixed for pointer to pointer, pointer to pointer to pointer, and so on as well...

Chasmiccoder avatar Jan 13 '21 14:01 Chasmiccoder