Define a structure ADDRESS with following fields: street, block, area, country and pin code.
Write a program to take input and print address of two persons using pointers to structures.
Answers
Answered by
29
Answer:
struct name {
member1;
member2;
.
.
};
int main()
{
struct name *ptr, Harry;
}
Similar questions