fork download
  1. char r[9], *p = r + 8, *Base20(int n) {
  2. do {
  3. *--p = n % 20 + 48 + n / 10 % 2 * 7;
  4. } while (n /= 20);
  5. return p;
  6. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:39: error: a function-definition is not allowed here before '{' token
 char r[9], *p = r + 8, *Base20(int n) {
                                       ^
stdout
Standard output is empty