#include #include #include #include #include typedef struct { string name; int votes; } candidate; int main(void) { candidate president; president.name = "Alyssa"; president.votes = 10; } /* struct makes a new */