diff options
| -rw-r--r-- | Project1/c_array.cpp | 9 | ||||
| -rw-r--r-- | Project1/c_array.h | 8 | ||||
| -rw-r--r-- | Project1/main.cpp | 20 |
3 files changed, 36 insertions, 1 deletions
diff --git a/Project1/c_array.cpp b/Project1/c_array.cpp index e69de29..fd64a39 100644 --- a/Project1/c_array.cpp +++ b/Project1/c_array.cpp @@ -0,0 +1,9 @@ +#include <iostream> +#include <ostream> +#include "c_array.h" + +using std::cin; +using std::cout; +using std::endl; + + diff --git a/Project1/c_array.h b/Project1/c_array.h index 6f70f09..95a13d4 100644 --- a/Project1/c_array.h +++ b/Project1/c_array.h @@ -1 +1,7 @@ -#pragma once +#ifndef C_ARRAY_HEADER +#define C_ARRAY_HEADER + + + + +#endif C_ARRAY_HEADER diff --git a/Project1/main.cpp b/Project1/main.cpp index e69de29..dab64a4 100644 --- a/Project1/main.cpp +++ b/Project1/main.cpp @@ -0,0 +1,20 @@ +// Name: Connor McDowell +// date: 2/12/2024 +// class: CST116 +// reason: inclass exercise 11, 2d arrays + +#include <iostream> +#include <ostream> +#include "c_array.h" + +using std::cin; +using std::cout; +using std::endl; + +int main() +{ + + + + return 0; +}
\ No newline at end of file |