What is the main limitation of using typedef to create an alias for a data type?
- It adds flexibility to data types
- It can lead to confusion with multiple typedefs
- It enforces strong data typing
- It increases code readability
The main limitation of using typedef to create an alias is that it can lead to confusion when multiple typedefs are used for the same base type.
Loading...
Related Quiz
- In C, which function can be used to search for a substring within a string?
- What is the primary purpose of the malloc function in C?
- In C, when an array is passed to a function, is it passed by value or by reference?
- The size of a structure in memory is determined by the ________ of its members.
- You're working on a program that continuously monitors sensor data and reacts when a certain threshold is reached. Which loop construct would be most suitable for this task?