GCC compiler gives me the following macros:
- __FILE__so that I can print out the file name + directory.
- __LINE__so that I can print out the line number of where I'm printing from.
- __PRETTY_FUNCTION__so that I can print out the pretty function name
Does Visual C++ have the equivalent of these macros? A side question is, are these standard for C++ compilers?
 
     
     
     
     
     
     
     
     
     
    