Data Types
- Select the odd one out with respect to type?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
float
- %f access specifier is used for ________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
Floating type
- In the following C code, the union size is decided by?
union temp
{
char ch;
int n;
float f;
};
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
both float and int
- Loss in precision occurs for typecasting from____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
float to int
- What is the size of float in a 32-bit compiler?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
4