What is the three address code IR for a C code-snippet declaring a structure?
struct name{
char c;
int i;
}
What is the three address code IR for a C code-snippet declaring a structure?
struct name{
char c;
int i;
}
The Three Address Code primarily works with assignments. You can represent only the assignments of the fields. All fields has an address.