Basic Introduction to Programming with C

Once you have defined the following before intmain(), you create variables just like int x or char c. In the following way struct [structure tag] my_var; my_var will now have all the members that you have defined previously. Those members can be accessed through a period like this => my_var.member . ................
................