Select Git revision
Forked from
Peter Gerwinski / hp
Source project has a limited visibility.
loesung-1-e-2.c 176 B
#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;
}