usaa21/cv1/program.c

27 lines
441 B
C
Raw Normal View History

2021-10-07 14:43:50 +00:00
#include <stdio.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#define size 100
struct pizza {
char meno[size];
float price;
};
int main() {
struct pizza listok[size];
char input[100]= {0};
char keyword[size] = {0};
printf("Zadaj hladanu surovinu:");
fgets(keyword, sizeof(keyword), stdin);
printf("%s", keyword);
}