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