#include <stdio.h>

int main(void) {
	char *s = "hello, world";
	printf("'%s' length=%u\n", s, sizeof("hello, world"));
	return 0;
}
