pvjc24/cv5/program.c

12 lines
123 B
C
Raw Normal View History

2024-03-21 12:38:59 +00:00
#include <stdio.h>
int main() {
return 0;
}
2024-03-21 13:09:15 +00:00
#define SIZE 100
struct student {
char name[SIZE];
int votes;
};