Which of the following cannot be a structure member? Explanation: None .
Read moreWhat are the structure members?
C Structure is a collection of different data types which are grouped together and each element in a C structure is called member. If you want to access structure members in C, structure variable should be declared.
Read moreIs union and structure same?
A structure is a user-defined data type available in C that allows to combining data items of different kinds. Structures are used to represent a record. A union is a special data type available in C that allows storing different data types in the same memory location .12 Eyl 2021
Read more