In the C++ tag wiki, it is stated that
C++ is a ... (usually) compiled ... programming language ...
Yet Wikipedia and cplusplus.com assert that C++ is a compiled language without mentioning any exceptions.
Could you please tell us the reason why C++ is usually, yet not always, a compiled language? When can C++ be deemed a non-compiled language?
Wikipedia:
C++ is a compiled language, with implementations of it available on many platforms.
cplusplus.com:
... is a compiled language. C++ compiles directly to a machine's native code, allowing
This may suggest that there are non-compiled forms of C++. What makes the wiki to state 'usually'?