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