7
Dlaczego „sizeof (a? True: false)” daje wynik o wielkości czterech bajtów?
Mam mały fragment kodu o sizeofoperatorze z operatorem trójskładnikowym: #include <stdio.h> #include <stdbool.h> int main() { bool a = true; printf("%zu\n", sizeof(bool)); // Ok printf("%zu\n", sizeof(a)); // Ok printf("%zu\n", sizeof(a ? true : false)); // Why 4? return 0; } Wyjście ( GCC ): 1 1 4 // Why 4? …