struct student s2 ,s3; //Not initialized
clrscr();
s2 = s1; //Copy each member of s1 to s2
s3 = s1; //and s 3
// Printing the structure S 1 information to the screen
printf("The contents of are: \n\n");
printf("s#2:\n");
printf("%s , %s , %d, %f, %s\n ",s2.name, s2.address
,s2.num_songs,s2.price,s2.date_brought);
printf("s#3:\n");
printf("%s , %s , %d, %f, %s\n ",s3.name, s3.address
,s3.num_songs,s3.price,s3.date_brought);
getch();
}