#include <windows.h>
#include <stdio.h>

int main(void)
{
    HMODULE hMod = LoadLibrary("kernel32.dll");

    printf("Adress : %p\nMemory Dump : %s\n", hMod, hMod);

    return 0;
}