42-archive/42sh/test.c
2017-03-27 03:48:30 +02:00

10 lines
131 B
C

#include "stdio.h"
#include "string.h"
int main(void)
{
char str[10];
strcpy(str, "aaaaaaaaaaaaaaaaaaaaaaaa");
return (0);
}