LOGBOOK

HELP

REVE1 Logs






Q What is the .bss section and why does it exist?

.bss holds uninitialized (zero) globals and statics; it takes no space in the file — just a recorded size — and the loader zero-fills it in memory. * .data carries real bytes on disk; .bss carries only a size — the loader materialises its zeros in memory at startup. * // Goes in...

Quiz: REVE1 / Program Execution | updated: Jul 14, 2026