A function is a group or sequence of C statements that are executed together.??? The following is a simple C program that prints a message on the screen./* A simple program for printing a message */# include <stdio.h># include <conio.h>void main( ){ clrscr( ); printf(???Welcome to C???); getch( );} 3.