Which of the following refers to size of memory allocated to float as per gcc compiler?
(A) 1
(B) 2
(C) 4
(D) 6
Answers
Answered by
2
Answer:4 because 2 memory float allocate 32 bit compiler and large is 4 because it allocate 64 bit compiler
Answered by
1
Answer:
(C) 4
Explanation:
size of memory allocated to float as per gcc compiler is 4 bytes.
Similarly, storage types of other data types is as below.
int data type Storage size : 4
char data type Storage size : 1
float data type Storage size : 4
double data type Storage size : 8
Similar questions