Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/cpu/neo.c
nihonium 852fe43c21 neo
2022-03-08 00:54:17 +03:00

6 lines
129 B
C

char* whatisyourname() {
char *res = calloc(256+1, sizeof(char));
for (int i = 0; i < 256; ++i)
res[i] = '1';
return res;
}