#include<stdio.h>#include<stdlib.h>#include<string.h>structfoo{charz[10];};char*get_z(structfoo*this){return&this->z[0]/* the `this' pointer is not dereferenced! */;}intmain(){structfook;char*n=get_z(&k);srand((int)(__mf_uintptr_t)n);/* use the pointer value */return0;}