From c9f4579fc073b456eb73caf5f8b2929fa4db3b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Thu, 14 Apr 2016 18:27:49 +0300 Subject: [PATCH] starting out --- lab8/2.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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; +}