pvjc26/du2/program.c
2026-03-09 12:50:29 +00:00

14 lines
124 B
C

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