From 06615448f1fd8378817e8ef72b5347ae3f0c3577 Mon Sep 17 00:00:00 2001 From: Oskar Date: Sun, 11 Aug 2024 20:59:53 +0200 Subject: more --- 3p29.cpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 3p29.cpp (limited to '3p29.cpp') diff --git a/3p29.cpp b/3p29.cpp new file mode 100644 index 0000000..d219ef1 --- /dev/null +++ b/3p29.cpp @@ -0,0 +1,31 @@ +#include +#include +#include "sales_data.hpp" +#include "sales_item.hpp" + +/* + * + * 3.29 + * + * + */ + +using std::string; +using std::cout; +using std::cin; +using std::cerr; +using std::clog; +using std::endl; +using std::vector; + +int main() { + + /* + - We need to know the size of an array when we create it + - We cannot initialize an array with another array and we cannot assign an array to another + - We cannot increase an array's size like we can with vectors. + - character arrays need space for the null character + + */ + return 0; +} -- cgit v1.2.3