XYZ.c 1.24 KB
/******************************************************************************
*
* File name: template.c
*
* Author: John Jane Doe
* 012345678
* jjdoe@ucsd.edu
*
*
* Lab #:
* Problem #:
*
* Submission Date:
*
******************************************************************************/
/*-----------------------------------------------------------------------------
Include files:
-----------------------------------------------------------------------------*/
#include <stdio.h>
/*=============================================================================
Constants and definitions:
=============================================================================*/
// put your #defines and typedefs here
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
The main function (describe what your program does here):
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
int main()
{
...
return 0;
}
/******************************************************************************
End of file
******************************************************************************/