Structs Flashcards
1
Q
How are the fields in a struct stored in memory?
A
They are stored consecutively
2
Q
How can i create an alias for the type:
long long unsigned int
A
typedef long long unsigned int my_int;
How are the fields in a struct stored in memory?
They are stored consecutively
How can i create an alias for the type:
long long unsigned int
typedef long long unsigned int my_int;