From acb4b2207b1badf7027c487d61e19adf12cf40da Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Thu, 5 Oct 2023 21:32:43 -0500 Subject: Add 2023-2/L04 solution --- 2023-2/L04/main.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 2023-2/L04/main.cpp (limited to '2023-2/L04/main.cpp') diff --git a/2023-2/L04/main.cpp b/2023-2/L04/main.cpp new file mode 100644 index 0000000..d542200 --- /dev/null +++ b/2023-2/L04/main.cpp @@ -0,0 +1,24 @@ +/* + * File: main.cpp + * Author: alulab14 + * + * Created on 22 de septiembre de 2023, 08:12 AM + */ + +#include "PunterosGenericos.h" +#include "MuestraPunteros.h" + +using namespace std; + +/* + * + */ +int main(int argc, char** argv) { + void *productos, *clientes; + cargaproductos(productos); + cargaclientes(clientes); + cargapedidos(productos, clientes); + imprimereporte(clientes); + return 0; +} + -- cgit v1.2.3