/************************************************************************
* Program:    Hello.c
* Author:     R. Ostapiuk
************************************************************************/
#include <stdio.h>

/************************************************************************
* Function: main() 
* (some details about what main does here...)
************************************************************************/
int main(void)
{
    int i;                    // Loop Count Variable
    char *p;                  // Pointer to output string
/*
    printf("Hello, world!\n");    // Display "Hello, world!" in terminal 
*/
    ...
}