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/p1/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/p1/main.cpp')
| -rw-r--r-- | 2023-2/E1/mitsuo/p1/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/2023-2/E1/mitsuo/p1/main.cpp b/2023-2/E1/mitsuo/p1/main.cpp index e762539..0764716 100644 --- a/2023-2/E1/mitsuo/p1/main.cpp +++ b/2023-2/E1/mitsuo/p1/main.cpp @@ -1,8 +1,9 @@ #include "fun.hpp" int main(int argc, char** argv) { - char **codigoDelProducto; - int **fechaClienteCantidad; + char** codigoDelProducto; + int** fechaClienteCantidad; + cargarPedidos(fechaClienteCantidad, codigoDelProducto, "../../Pedidos.csv"); pruebaDeCargaDePedidos(fechaClienteCantidad, codigoDelProducto, "PruebaPedidos.txt"); return 0; |
