#include <stdio.h> void func( ); // declaration int main( ) { func( ); return 0; } void func( ) // definition { printf( "Hello Function !\n" ); }