In the following code can we declare a new typedef name emp even though struct employee has not been completely defined while using typedef? < Yes / No>
typedef struct employee *ptr;
struct employee
{
char name[20];
int age;
ptr next;
};5
915 5b5cc7dde4d2b419777515c5
Q: In the following code can we declare a new typedef name emp even though struct employee has not been completely defined while using typedef? < Yes / No> typedef struct employee *ptr; struct employee { char name[20]; int age; ptr next; };
- Show Answer
- Workspace
- Discuss