pvjc24/cv5/program.c
2024-03-21 14:09:15 +01:00

12 lines
123 B
C

#include <stdio.h>
int main() {
return 0;
}
#define SIZE 100
struct student {
char name[SIZE];
int votes;
};