[CT437]: Add Assignment 2

This commit is contained in:
2025-03-05 13:17:54 +00:00
parent 95fad9e57b
commit 42e19b4f14
9 changed files with 169 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/* Create a header file for each source code file using the same name, but with a "*.h" extension. */
/* Keep it in the same folder as the source code file, and include it via #include "file.h" */
#ifndef FILENAME /* This symbolic name is unique and should match the file name. */
#define FILENAME /* This expression makes sure that this header file is only included once. */
/* Add all your function prototypes, macros, #defines, etc. below. */
#endif