diff --git a/lab8/2.c b/lab8/2.c index e69de29..f2383d0 100644 --- a/lab8/2.c +++ b/lab8/2.c @@ -0,0 +1,18 @@ +#include + +#define ROW_LEN 50 + +typedef struct Db_tag { + int i; + char repair_type[ROW_LEN]; + char imei[ROW_LEN]; + int price; + int investment; + int profit; + int total_profit; + int total_influx; +} Database; + +int main(void) { + return 0; +}