starting out

This commit is contained in:
Denis Nuțiu 2016-04-14 18:27:49 +03:00
parent 65fcd406a5
commit c9f4579fc0

View file

@ -0,0 +1,18 @@
#include <stdio.h>
#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;
}