Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~157 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for sanjuktamuna

include<stdio.h> struct address{ char city[20],country[20],state[20]; }; struct customer{ int acount; char name[20]; float bal; struct address add; }; void display(struct customer * ,int); void main() { int i,size; printf("enter the number of customers"); scanf("%d",&size); struct customer cus[size]; struct customer * c[size]; for(i=0;i<size;i++) { printf("!"); scanf("%s",&cus[i].name); printf("!"); scanf("%d",&cus[i].acount); printf("!"); scanf("%f",&cus[i].bal); printf("!"); …

Member Avatar for Vish0203
0
157