What is the difference between declaring a structure in C like : 1) typedef struct and2) struct

Showing Answers 1 - 3 of 3 Answers

typedef struct means : it tells the allies name of struct
EX:
typedef struct
{
int data,y;
float s;
}sa;
sa s1,s2;
struct: struct is a keyword for define a multlple type variable

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions