How to access structure variables in nested structures
#include<stdio.h>
typedef struct contact
{
char name[1][20];
struct number
{
double num;
}no;
};
Now how to access num ,can anyboddy explain me?