Computer Science, asked by nidhicp1790, 9 months ago

Which of the following refers to size of memory allocated to float as per gcc compiler

Answers

Answered by DHAVALMAGDUM
0

Answer:

Originally Answered: In C language, the integer takes 2 bytes for a 32-bit compiler and 4 bytes for a 64-bit compiler. The float always takes 4 bytes. The character always takes 1 byte. ... It states no requirement about the floating-point type representations, hence float can have any sizes depend on the compiler.

Answered by rr5833349
0

Answer:

  • float - 4 bytes
  • int - 2 bytes
  • char -1 bytes
Similar questions