A
Q. What is the size of float in a 32-bit compiler?
In a 32-bit compiler, the size of a float data type is 4 bytes (32 bits) because:
Verification with C Code:
You can check the size of float using:
#include <stdio.h>
int main() {
printf("Size of float: %zu bytes\n", sizeof(float));
return 0;
}
Output:
Size of float: 4 bytes
Final Answer:
✅ (B) 4
You must be Logged in to update hint/solution
Q. With which value should a pointer be initialized?
Q. Choose a right C Statement.
Q. Which function converts a string of digits into its numeric equivalent
Q. What do you call STAR * and Ampersand & in a c program context.?
Q. What is the output of C Program?
Q. Size of a Turbo C C++ compiler is.?
Q. A binary tree with 27 nodes has _______ null branches.
Discusssion
Login to discuss.