What is the correct output of sizeof(“string”)?
This is all 100% standardized. C17 6.10.8.1: __DATE__ The date of translation of the preprocessing translation unit: a character string literal of the form “Mmm dd yyyy” … and the first character of dd is a space character if the value is less than 10. … __TIME__ The time of translation of the preprocessing translation … Read more