9 lines
102 B
C
9 lines
102 B
C
|
#include <stdio.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
char ff[254] = "";
|
||
|
|
||
|
ft_strcpy(ff, "ffff");
|
||
|
printf("%s", ff);
|
||
|
}
|