usaa21/cv1/program.c
Peter Petrek 2493c2e634 test
2021-10-07 16:43:50 +02:00

27 lines
441 B
C

#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);
}