#include <stdio.h>

typedef struct Expected {

   const int number;
   const char operand;

} Expected;   



int main(void) {
Expected array[1];
Expected e = {1, 'c'};
array[0] = e;
printf("%d\n", array[0].number);
	return 0;
}
