Tagged Questions
28
votes
7answers
10k views
Why do people use __(double underscore) so much in C++
I was having a look through some open source C++ code and notice a lot of double under scores where used in the code, mainly at the start of variable names.
return __CYGWIN__;
Just wondering is ...