Commit d95afbae authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

included all lab3 questions

parent 92fa1c8c
Loading
Loading
Loading
Loading
Loading

CMakeLists.txt

0 → 100644
+7 −0
Original line number Diff line number Diff line
cmake_minimum_required(VERSION 3.23)
project(lab_configs)

set(CMAKE_CXX_STANDARD 14)

add_executable(lab_configs
        main.cpp)
+12 −2
Original line number Diff line number Diff line
@@ -10,7 +10,12 @@
// STUBS
#ifdef LAB3
// add lab 3 stubs
void E61();
void e61();
void e610() {}
void p66() {}
void e74() {}
void e715() {}
void e79() {}
#endif


@@ -18,6 +23,11 @@ void E61();
int main() {
#ifdef LAB3
    // lab 3 tests
    E61();
    e61();
    e610();
    p66();
    e74();
    e715();
    e79();
#endif
}