#include <stdio.h>

void foo(char s[1]) {
	printf("%s\n", s);
}

int main(void) {
	char yoba[5]="allo";
	foo(yoba);
	return 0;
}
