About
This tool is capable of interpreting simple C constructs (excluding structs
, unions
, enums
) and then visualize the memory space.
Macros are not supported, built-in functions include:
printf
,
malloc
,
calloc
,
free
.
The version of the C language is the ISO/IEC 9899:1999 (also known as C99) with some advanced keywords omitted.
User Interface Overview
The main interface consists of three sections:

Application interface layout
- Code Editor (left panel)
- Memory Visualization (right panel)
- Control Panel (top menu bar)
Control Panel Functions
The control panel contains these buttons (left to right):
Button |
Functionality |
Compile |
Compiles code and prepares for execution |
Step Forward |
Executes one program step |
Step Back |
Returns one step backward |
Reset |
Returns interpretation to program start |
Run |
Executes the entire program |