10 lines
138 B
C
10 lines
138 B
C
int
|
|
main(int argc, char **argv)
|
|
{
|
|
static char str[100];
|
|
sprintf (str, "this is a test\n");
|
|
|
|
printf ("test: %s\n", str);
|
|
return (0);
|
|
}
|