43.9k views
3 votes
The C++ standard library provides code that’s organized into a. folders b. namespaces c. sublibraries d. none of the above

User Noishe
by
4.9k points

1 Answer

5 votes

Answer:

Namespaces ( B )

Step-by-step explanation:

The codes in the C++ standard library are organized into folders Known as namespaces .

namespaces are general used to organize various codes into logical groups to avoid name collisions that may occur when there is the presence of multiple libraries in a code base.

User Valbona
by
4.8k points