gcc-10.3.0 3.13 Options Controlling the Preprocessor
stackoverflow How can I find the header files of the C programming language in Linux?
gcc -H ... will print the full path of every include file as a side-effect of regular compilation. Use -fsyntax-only in addition to get it not to create any output (it will still tell you if your program has errors).