Is there a way to import all libs from my program into just include
like in other languages: import re, datetime, math
(Python)?
After reading about preprocessing directives here (Little is said about the include
on this Wiki page) I thought of something like import the default system libs ( stdio, stdlib, stdbool, string, locale
...) as external libs " stdio.h, stdlib.h "
, but I do not think there is a (or do not know) a delimiter to put between them so that it works correctly ... just out of curiosity even if someone knew would be grateful.
In addition to the Wikipedia article: Cpp Reference Preprocessor >