/*ENU HomeCompiler LabHow To Write Generation Of Three Address Code in C Programming How To Write Generation Of Three Address Code in C Programming Learning|Tutorial3:41 AM In source code I use the Three function pm(),plus(),div(), I use the keyword strlen and I include the string.h header package. Example Source Code Programming | Generation Three address code Project*/ #include<stdio.h> #include<string.h> void pm(); void plus(); void div(); int i,ch,j,l,addr=100; char ex[10], exp[10] ,exp1[10],exp2[10],id1[5],op[5],id2[5]; void main() { clrscr(); while(1) { printf("\n1.assignment\n2.arithmetic\n3.relational\n4.Exit\nEnter the choice:"); scanf("%d",&ch); switch(ch) { case 1: printf("\nEnter the expression with assignment operator:"); scanf("%s",exp); l=strlen(exp); exp2[0]='\0'; i=0; while(exp[i]!='=') { i++; } strncat(exp2,exp,i); strrev(exp); exp1[0]='\0'; strncat(exp1,exp,l-(i+1)); strrev(exp1); printf("Three address code:\ntemp=%s\n%s=temp\n",exp1,exp2); break; case 2: printf("\nEnter the expression with arithmetic operator:"); scanf("%s",ex); strcpy(exp,ex); l=strlen(exp); exp1[0]='\0'; for(i=0;i<l;i++) { if(exp[i]=='+'||exp[i]=='-') { if(exp[i+2]=='/'||exp[i+2]=='*') { pm(); break; } else { plus(); break; } } else if(exp[i]=='/'||exp[i]=='*') { div(); break; } } break; case 3: printf("Enter the expression with relational operator"); scanf("%s%s%s",&id1,&op,&id2); if(((strcmp(op,"<")==0)||(strcmp(op,">")==0)||(strcmp(op,"<=")==0)||(strcmp(op,">=")==0)||(strcmp(op,"==")==0)||(strcmp(op,"!=")==0))==0) printf("Expression is error"); else { printf("\n%d\tif %s%s%s goto %d",addr,id1,op,id2,addr+3); addr++; printf("\n%d\t T:=0",addr); addr++; printf("\n%d\t goto %d",addr,addr+2); addr++; printf("\n%d\t T:=1",addr); } break; case 4: exit(0); } } } void pm() { strrev(exp); j=l-i-1; strncat(exp1,exp,j); strrev(exp1); printf("Three address code:\ntemp=%s\ntemp1=%c%ctemp\n",exp1,exp[j+1],exp[j]); } void div() { strncat(exp1,exp,i+2); printf("Three address code:\ntemp=%s\ntemp1=temp%c%c\n",exp1,exp[i+2],exp[i+3]); } void plus() { strncat(exp1,exp,i+2); printf("Three address code:\ntemp=%s\ntemp1=temp%c%c\n",exp1,exp[i+2],exp[i+3]); }