Compiling C for Android
Compile and run C programs on Android to debug pieces of code
#include <stdio.h>
#include <stdlib.h>
int iVar1;
char __s[0x21];
int main() {
srand(0x1ca3);
long lVar4 = 0;
do {
iVar1 = rand();
__s[lVar4] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[iVar1 % 0x3e];
lVar4 = lVar4 + 1;
} while (lVar4 != 0x20);
__s[0x20] = '\0';
printf("Key: %s\n", __s);
}Last updated
