2024-10-31 01:05:33 -07:00

15 lines
185 B
C

#ifndef P9_H
#define P9_H
typedef struct {
int id;
char name[32];
double price;
int stock;
} Product;
Product* find_product(Product* products, int num_products, int id);
#endif