Name: Anonymous 2012-04-08 3:40
Hello /prog/
if i have:
n = a^b
m = b^c
Then how can i take n and m and figure out what b is?
char *str = "prog";
char[4] newstr;
newstr[0] = str[0]^str[1];
newstr[1] = str[1]^str[2];
newstr[2] = str[2]^str[3];
newstr[3] = str[3]^str[0];