Files
Elliot Killick fbc79552f4 Update
2025-02-21 00:24:16 -05:00

14 lines
276 B
C

#include <stdio.h>
// Dynamically link to test library
__declspec(dllimport) int shared_variable;
int* get_shared_variable_address() {
//__debugbreak();
return &shared_variable;
}
int main() {
printf("shared_variable = %d\n", *get_shared_variable_address());
}