#include #include #include int main(void) { char command[128]; sprintf(command, "cat /proc/%d/maps", getpid()); system(command); return 0; }