/*	Calculates the length of a string and prints it on stdout	*/

#include <stdio.h>

int main(void) {

	char s[] = "Hello world!\n";
	int i;	

	for(i = 0; s[i]; i++)
		;

	printf("%d\n", i);
	
	return 0;
}
