Tagged Questions
4
votes
5answers
464 views
Why did the language designers of C do type equivalance like this?
I'm learning C and I'm reading about type equivalence.
I'm curious, does anyone have an opinion why they used structural equivalence for arrays and pointers but they used declaration equivalence for ...
1
vote
3answers
737 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 ...
-2
votes
2answers
364 views
Name equivalence question
Suppose I have:
int a;
int b;
Are the variables a and b name equivalent (more specifically, since primitive types don't have type names, can they be considered name equivalent)?
Thanks.