23 lines
393 B
C
23 lines
393 B
C
#include <stdio.h>
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
#define velkost 10
|
|
|
|
struct zasobnik {
|
|
float price;
|
|
int size;
|
|
};
|
|
|
|
int main() {
|
|
//struct zasobnik databaza[velkost];
|
|
//char input[100]= {0};
|
|
|
|
//while(fgets(input, sizeof(input), stdin) && strcmp( input, "\n" ) != 0 ){
|
|
|
|
//}
|
|
|
|
} |