usaa21/cv1/program.c

12 lines
111 B
C
Raw Normal View History

2021-10-02 13:06:04 +00:00
#include <stdio.h>
#define LINESIZE 100
struct pizza {
float prize;
char name[LINESIZE];
};
int main(){
}