# include # include # include "header1.h" // Notice how small the main program is. It gives us a general idea of what we // want to do here. void main(void){ Complex Num1,Num2,Answer; int Flag1=0,Flag2=0,UserChoice=0; while (UserChoice!=8){ if (!Flag1 || !Flag2) PrintInitial(); else PrintFinal(); scanf("%d",&UserChoice); MenuEntry(&Num1, &Num2, &Answer, &Flag1, &Flag2,UserChoice); } }