@wallhackio Beautiful Now I'm sad that it doesn't work in C This compiles in C++, but not in C
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int a = 1, b = 2; srand(time(NULL)); ((rand() % 2 == 0) ? a : b) = 3; printf("%d %d\n", a, b); return 0; }