Is the name of structure represent its address, is it true?? plzz explain
struct s{
int a;
char b;
};
struct s s1;
struct s *ptr;
is writing 's1' represent the address of s1, means 's1' or '&s1' are same thing???
ptr=&s1;
ptr=s1;
// which is correct??