From 06615448f1fd8378817e8ef72b5347ae3f0c3577 Mon Sep 17 00:00:00 2001 From: Oskar Date: Sun, 11 Aug 2024 20:59:53 +0200 Subject: more --- 3p28.cpp | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 3p28.cpp (limited to '3p28.cpp') diff --git a/3p28.cpp b/3p28.cpp new file mode 100644 index 0000000..14f617a --- /dev/null +++ b/3p28.cpp @@ -0,0 +1,30 @@ +#include +#include +#include "sales_data.hpp" +#include "sales_item.hpp" + +/* + * + * 3.28 + * + * + */ + +using std::string; +using std::cout; +using std::cin; +using std::cerr; +using std::clog; +using std::endl; +using std::vector; + +string sa[10]; // Default initialized strings +int ia[10]; // ints with 0 +int main() { + + string sa2[10]; // Default initialized strings + //int ia2[10]; // Unititialized, UB + + cout << sa[0] << "|" << ia[0] << "|" << sa2[0] << endl; + return 0; +} -- cgit v1.2.3