preprocessor tag

13 questions


1 answers
143 views
0
To view C/C++ code after preprocessing in Visual Studio?

I have a C++ code with a lot of preprocessor instructions.I want to see how this was handled, where can I see it in the visual studio?


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

1 answers
79 views
0
Question about #define

Due to security errors #define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <cstring>You write it at the beginning of the chords like this. By the way,#include <iostream>#inclu...

2 years ago
« - 2 -

© 2024 OneMinuteCode. All rights reserved.