Will C++ supports Structures
A
Correct answer
Explanation
C++ supports structures through the 'struct' keyword, which allows grouping related data items under a single name. Structures can contain different data types and are similar to classes, with the main difference being default access visibility (public for structs, private for classes). This feature is inherited from C and is fundamental to data organization.