nihonium
/
mipt_clang
Archived
1
0
Fork 0
master
nihonium 2 years ago
parent 0802b2508e
commit 852fe43c21

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