diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-20 12:31:43 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-20 12:31:43 -0500 |
| commit | 4c144833b278188c567198866934e8773be9c8f4 (patch) | |
| tree | 6ee01c357c58c9b9bd30ab621770d33f7d589ea7 /2023-2/E1/mitsuo/p2/main.cpp | |
| parent | fba9c34c547c99d56b4bf2d83caf5c68a638107f (diff) | |
| download | LP1-4c144833b278188c567198866934e8773be9c8f4.tar.gz LP1-4c144833b278188c567198866934e8773be9c8f4.tar.bz2 LP1-4c144833b278188c567198866934e8773be9c8f4.zip | |
Add sol for p1, p2 of 2023-2 E1
Also add the topics covered in the exam on topics.txt
Diffstat (limited to '2023-2/E1/mitsuo/p2/main.cpp')
| -rw-r--r-- | 2023-2/E1/mitsuo/p2/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/2023-2/E1/mitsuo/p2/main.cpp b/2023-2/E1/mitsuo/p2/main.cpp index caf1fe7..aafff14 100644 --- a/2023-2/E1/mitsuo/p2/main.cpp +++ b/2023-2/E1/mitsuo/p2/main.cpp @@ -1,7 +1,8 @@ #include "fun.hpp" int main(int argc, char** argv) { - void *productos; + void * productos; + cargarProductos(productos, "../../Productos.csv"); pruebaDeCargaDeProductos(productos); return 0; |
