howdy.c 84 B

1234567
  1. #include <stdio.h>
  2. int howdy(const char *s)
  3. {
  4. return printf("howdy: %s\n", s);
  5. }