Answers for "nested structure synin c"

0

nested structure in c

struct address   
{  
    char city[20];  
    int pin;  
    char phone[14];  
};  
struct employee  
{  
    char name[20];  
    struct address add;  
};  
Posted by: Guest on October-17-2021

Browse Popular Code Answers by Language