Wap to implement declaration structure and expression structure. code example
Example 1: declare structure in c
struct num{
int a ;
int b;
};
int main()
{
struct num n;
//accessing the elements inside struct
n.a=10;
n.b=20;
}
Example 2: Structure of Structs in c
The basic structure