summaryrefslogtreecommitdiffstats
path: root/2023-2/L04/main.cpp
blob: d54220080926517d4d82f34b7883342a4592f8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}