- A1
- B2
- C3 and 4
- DAll
All are valid
Output
equal
0.1f results in 0.1 to be stored in floating point representations.
char has lesser bytes than int and int has lesser bytes than double in any system
Option C is correct with respect to the size of the datatypes in the C programming language. The char data type typically has a size of 1 byte, the int data type typically has a size of 4 bytes, and the double data type typically has a size of 8 bytes. Therefore, char < int < double in terms of size. However, it's worth noting that the size of these data types can vary depending on the specific implementation and architecture of the system being used.
In C language, data types can be arranged based on their size in bytes. Here's a common arrangement from smallest to largest:
Please note that the actual size of these data types might vary depending on the compiler and system architecture.
Since the size of the structure depends on its fields, it has a variable size.
All are modifier in data type.