starting out
This commit is contained in:
parent
65fcd406a5
commit
c9f4579fc0
1 changed files with 18 additions and 0 deletions
18
lab8/2.c
18
lab8/2.c
|
@ -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;
|
||||
}
|
Loading…
Reference in a new issue