#define get_married \
({ \
char *s = malloc(32); \
sprintf(s, "%s", "okuzile mazima🫡"); \
for(int i = 0; i < 1000000; i++) { \
asm volatile("nop"); \
for(int j = 0; j < 1000000; j++) { \
asm volatile("nop"); \
} \
} \
printf("%s", s); \
free(s); \
})
int main() { volatile int x; get_married; }
#define get_married \({ \ char *s = malloc(32); \ sprintf(s, "%s", "okuzile mazima🫡"); \ for(int i = 0; i < 1000000; i++) { \ asm volatile("nop"); \ for(int j = 0; j < 1000000; j++) { \ asm volatile("nop"); \ } \ } \ printf("%s", s); \ free(s); \})int main() { volatile int x; get_married; }