10 lines
126 B
C
10 lines
126 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
int main ()
|
||
|
{
|
||
|
char foo[10];
|
||
|
strcpy (foo, "123456789");
|
||
|
return 0;
|
||
|
}
|