diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-20 07:20:44 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-20 07:20:44 -0500 |
| commit | fba9c34c547c99d56b4bf2d83caf5c68a638107f (patch) | |
| tree | 42cb8c21174fee337b0b09dc6da653712005b2a1 /2023-2/E1/mitsuo/p2/main.cpp | |
| parent | 70f96dbce2085d29de6ade90222ae2289cebe4e7 (diff) | |
| download | LP1-fba9c34c547c99d56b4bf2d83caf5c68a638107f.tar.gz LP1-fba9c34c547c99d56b4bf2d83caf5c68a638107f.tar.bz2 LP1-fba9c34c547c99d56b4bf2d83caf5c68a638107f.zip | |
Add p1 and p2 solution for 2023-2 E1
Diffstat (limited to '2023-2/E1/mitsuo/p2/main.cpp')
| -rw-r--r-- | 2023-2/E1/mitsuo/p2/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2023-2/E1/mitsuo/p2/main.cpp b/2023-2/E1/mitsuo/p2/main.cpp new file mode 100644 index 0000000..caf1fe7 --- /dev/null +++ b/2023-2/E1/mitsuo/p2/main.cpp @@ -0,0 +1,8 @@ +#include "fun.hpp" + +int main(int argc, char** argv) { + void *productos; + cargarProductos(productos, "../../Productos.csv"); + pruebaDeCargaDeProductos(productos); + return 0; +}
\ No newline at end of file |
