/* example that demonstrates the use of functions */ #include void world (void) { printf("\nHello World\n"); } int main (void) { printf("\nCalling function\n"); /*note that functions with no parameters still require () */ world(); printf("\nReturned from function\n"); }