where to declare structures, inside main() or outside main()?

前端 未结 3 1888
春和景丽
春和景丽 2021-02-04 12:39

Case 1: structure declared outside main() working fine

#include
#include
struct prod
{
    int price,         


        
相关标签:
3条回答
  • 2021-02-04 13:00

    It have to do about scoping, when you define the structure inside the main function then it's only defined in the scope of the main function, so the billamt function can't know about it.

    0 讨论(0)
  • 2021-02-04 13:02

    where to declare structures, inside main() or outside main()?

    1. First thing, I think you meant "define", not "declare".

    2. Second, there is no rule as such, You can define wherever you want. It is all about the scope of the definition.

      • If you define the structure inside main(), the scope is limited to main() only. Any other function cannot see that definition and hence, cannot make use of that structure definition.

      • If you define the structure in a global scope, (i.e., outside main() or any other function, for that matter), that definition is available globally and all the functions can see and make use of the structure definition.

    0 讨论(0)
  • 2021-02-04 13:08

    Structure are a like array only the main difference in Array can hold only same type of values but a structure can have different types of values so if you need to implement structure globally(by globally i mean it can be used in any other function too) define it outside the main and if you want to use your structure only in the main function define it inside it. Happy Coding :-)

    0 讨论(0)
提交回复
热议问题