Example of C Structures char address[100]; }; struct bill { float amount; int id; char address[100]; }; struct bill { float amount; int id; char address[100]; };
Read moreWhat is structure of a program?
program structure The overall form of a program, with particular emphasis on the individual components of the program and the interrelationships between these components . Programs are frequently referred to as either well structured or poorly structured.
Read more