#include #define STACK_SIZE 101 struct stack { float values[STACK_SIZE]; int size; }; int main() { return 0; }