Online C programming exercises


What does the function return?

void hello (char *name)
{
printf("Hello, %s.", name);
}

char
char*
nothing
%s


Next Exercise