#include <stdio.h> int fun_4 (char *s) { int x = 0; while (*s) x += *s++; return x; } int main (void) { printf ("%d\n", fun_4 ("Hello, world!\n")); return 0; }