The issues with using include namespace comes when multiple libraries have the same namespaces. If two share a cout, then the computer will be unsure which cout to pull from, and could pick either or. This can cause big issues later on.
The issues with using include namespace comes when multiple libraries have the same namespaces. If two share a cout, then the computer will be unsure which cout to pull from, and could pick either or. This can cause big issues later on.