I have static variable which is initialized before main. This static variable is initialized based on argv and argc.
However the main function is launched after static variable is instantiating so argv and argc are not available yet.
how can I do that? how can I know what are the flag values in order to init the static variable?