4
votes
5answers
252 views
Why can I not assign interchangeably with two structs that have identical contents?
I'm trying to learn C and I've come across something weird:
struct
{
int i;
double j;
} x, y;
struct
{
int i;
double j;
} z;
Here, you can see I created t …
2
votes
7answers
547 views
C array declaration and assignment?
I've asked a similar question on structs here but I'm trying to figure out how C handles things like assigning va …
1
vote
3answers
294 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:
…
