Computer Science, asked by cprogramming, 6 months ago

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 Anonymous
29

Answer:

struct name {

member1;

member2;

.

.

};

int main()

{

struct name *ptr, Harry;

}

Similar questions