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