Skip to main content

ENTER DETAILS OF A STUDENT USING STRUCTURE WITHIN A STRUCTURE


LIST OF PROGRAMS


#include<stdio.h>
#include<conio.h>
struct stu2
{
char add[50];
long int pin;
char city[50];
}s3;
struct stu
{
char student[20];
struct stu2 s3;
}s2[3];
void main()
{int i;
clrscr();
printf("\nENTER DETAILS OF  STUDENT:  ");
for( i=0;i<3;i++)
{
printf("\nENTER STUDENT NAME");
  gets(s2[i].student);
printf(" Enter Address:\n");
  gets(s2[i].s3.add);
printf("Enter Pin Code\n");
  scanf("%ld",&s2[i].s3.pin);
printf("Enter City Name");
  fflush(stdin);
  gets(s2[i].s3.city);
}

printf("DETAILS OF  STUDENT ARE : ");
for(i=0;i<3;i++)
{
printf("\nSTUDENT NAME ");
puts(s2[i].student);
printf("\n ADDRESS IS:  ");
puts(s2[i].s3.add);
printf("\nPINCODE IS : %ld \n",s2[i].s3.pin);
printf("CITY NAME  \n");
puts(s2[i].s3.city);
}
getch();
}

LIST OF PROGRAMS

Comments

Anonymous said…
all programs are not here only question are there not answers

Popular posts from this blog

unix commands