0
What is #pragma
preprocessor
3 Réponses
+ 4
it's a faster #ifndef #define preprocessor. it's to make sure that you're not including headers twice which can result in some funky errors. the difference between the two is that all compilers recognize #ifndef, #define so it's fail proof. but not all compilers recognize #pragma, but it's a bit faster and neater
+ 1
As I know, it's a preprocessor with very many neat functions.
0
note that it is not supported by default by all popular compilers.