In python if we run
import sys
print(sys.path)
it will give us a list of directories where python interpreter or compiler searches in when an import keyword encountered.
similarly is there a command(or a CLI command) or function in c++ which do the same as python's sys.path 
More information, I am using windows, mingw gcc version 6.3.0
