This commit is contained in:
Anton Dolozin 2025-09-23 22:19:25 +02:00
parent 209967ef0c
commit d89d13f7fd

View File

@ -1,10 +1,10 @@
#define LINE_SIZE 100
#define POCET_JEDAL 100000
#define POCET_JEDAL 100000 //macros pre velky vstupy a vystupy
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
struct pizza
struct pizza ///materialy z cvicenia
{ float prize;
char name[LINE_SIZE];
};
@ -20,7 +20,7 @@ char hacker_script(char c) {
if (isupper(c)) {
return (char) tolower(c);
return tolower(c);
}