Dlaczego preprocesor C w GCC interpretuje słowo linux(małe litery) jako stałą 1? test.c: #include <stdio.h> int main(void) { int linux = 5; return 0; } Wynik $ gcc -E test.c(zatrzymaj się po etapie przetwarzania wstępnego): .... int main(void) { int 1 = 5; return 0; } Co...