27 lines
441 B
C
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);
|
||
|
|
||
|
}
|