#include <stdio.h>

const char *code = "\xb8\xbe\xba\xfe\xca\xc3";

typedef int (*pFunc)();

int main() {
    printf("%x\n", ((pFunc)code)());
    return 0;
}
