c-preprocessor tag

1 questions


1 answers
55 views
0
Preprocessor C treated linux as constant 1. Why is that?

Preprocessor C in GCC treated variable name linux as constant 1.//test.c:#include <stdio.h>int main(void){ int linux = 5; return 0;}Looking at the result of pretreating this with gcc-E test.c,...

2 years ago

© 2024 OneMinuteCode. All rights reserved.