#include<stdio.h> /*Function prototypes*/ myfunc(); main() { myfunc(); } /*Function Defination*/ myfunc() { printf("Hello, this is a test\n"); }