2021-07-04 16:59:09 +02:00

8 lines
102 B
C

#include <stdio.h>
int main()
{
char str[5];
strcpy(str, "0123456789abcdef");
return 0;
}