diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-05 21:32:43 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-05 21:32:43 -0500 |
| commit | acb4b2207b1badf7027c487d61e19adf12cf40da (patch) | |
| tree | 0bab1791bdb727b2a08ff061f7cb3e7191a54cee /2023-2/L04/mitsuo/main.cpp | |
| parent | a79d2ac6a872cb0b10fd502adbf853b013bcde70 (diff) | |
| download | LP1-acb4b2207b1badf7027c487d61e19adf12cf40da.tar.gz LP1-acb4b2207b1badf7027c487d61e19adf12cf40da.tar.bz2 LP1-acb4b2207b1badf7027c487d61e19adf12cf40da.zip | |
Add 2023-2/L04 solution
Diffstat (limited to '2023-2/L04/mitsuo/main.cpp')
| -rw-r--r-- | 2023-2/L04/mitsuo/main.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2023-2/L04/mitsuo/main.cpp b/2023-2/L04/mitsuo/main.cpp new file mode 100644 index 0000000..a3ad225 --- /dev/null +++ b/2023-2/L04/mitsuo/main.cpp @@ -0,0 +1,22 @@ +/* Static libraries are not portable, and I'm using a Linux system, so I wont + be using the supplied static library. + + clang++ -std=c++11 -g *.cpp +*/ + +#include "fun.hpp" +// #include "MuestraPunteros.h" + +int main(int argc, char ** argv) { + void * productos, * clientes; + cargaproductos(productos); + imprimeproductos(productos); + + cargaclientes(clientes); + imprimeclientes(clientes); + + cargapedidos(productos, clientes); + imprimereporte(clientes); + return 0; +} + |
