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 moreWhat is the structure of C program with example?
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 more