You define a structure type globally because
A. you save many lines of code by not rewriting an identical structure definition in each function that uses it
B. you will never change its definition
C. it is required in C++
D. all of the above
Answer: Option A
Solution (By Examveda Team)
You define a structure type globally because you save many lines of code by not rewriting an identical structure definition in each function that uses it.Defining a structure globally ensures that all functions within the program can access and use the same structure definition without redundancy.
This practice promotes code reusability and maintainability, as changes to the structure only need to be made in one place.
Defining structures globally is not a requirement in C++, but it is a common practice to avoid repetitive code and potential inconsistencies.

why A become the answer? please give explanation with it we do not have time to discuss with your board!