/* * Greetings in C- */ #include <stdio.h> #include <stdlib.h> void greet(const char *s); { printf("Hello, %s!\n", s); } int main(void) { greet("Dan"); return EXIT_SUCCESS; }