From c0cc72f03f700ee705e139fb4bf95a7ce03d0b81 Mon Sep 17 00:00:00 2001 From: Oskar Date: Mon, 7 Oct 2024 19:46:27 +0200 Subject: more --- 9p6.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 9p6.cpp (limited to '9p6.cpp') diff --git a/9p6.cpp b/9p6.cpp new file mode 100644 index 0000000..1893e03 --- /dev/null +++ b/9p6.cpp @@ -0,0 +1,22 @@ +#include +#include + +/* + * + * 9.6 + * + * + */ + +int main () { + + std::list lst1; + std::list::iterator iter1 = lst1.begin(), iter2 = lst1.end(); + while (iter1 != iter2) { + + } + + // Maybe it is a bit cheating but when compiling this code, there seems to be no '<' operators for the list container. + // Correct it by giving it the condition above + return 0; +} -- cgit v1.2.3