16 lines
143 B
C
16 lines
143 B
C
#include <stdio.h>
|
|
#define LINESIZE 100
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
struct pizza {
|
|
float prize;
|
|
char name[LINESIZE];
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|