9 lines
115 B
C
9 lines
115 B
C
#include <stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
char s[] = "Hello, world!";
|
|
size_t length = sizeof s - 1;
|
|
|
|
return 0;
|
|
}
|