GNU g ++ compilers have some extensions, such as VLA (variable length arrays), although these functions are not C ++ standards.
So, if I need to compile a program using only standard C ++ constructors and avoiding these additional extensions, can I do this with GNU g ++?
Something like g++ test.cpp -std=onlyStandards ?
source share