Tagged Questions
1
vote
2answers
465 views
structural equivalence vs name equivalence
I can't seem to grasp exactly what name equivalence is. I'm pretty sure I have structural down though. An example my professor gave was this:
Type TI=integer
Type TTI=TI
a=integer
b=TTI
f= ref ...
1
vote
3answers
736 views
Are two int arrays of different size “type equivalent” in C?
I'm reading about Type Equivalence in my Programming Languages class and I've come across a situation in C I'm unsure about.
It describes C's "Type Equivalence" as:
C uses a form of type ...