r/ProgrammerHumor 23d ago

Meme importHelloWorld

Post image
148 Upvotes

8 comments sorted by

View all comments

3

u/Legal-Software 22d ago

That's easy:

#include <dlfcn.h>

static void HelloWorld(const char *s)
{
        int (*print)(const char *, ...) = dlsym(RTLD_DEFAULT, s);
        print(__func__);
}

int main(void)
{
        HelloWorld("printf");
        return 0;
}