#include <stdio.h>
#include <conio.h>
int main()
{
typedef struct
{
int sno;
char name[20];
} student;
student s1;
printf("Enter the details of students\n");
printf("Enter sno and name\n");
scanf("%d%s", &s1.sno, s1.name);
printf("The details of students are\n");
printf("Sno-%d Name-%s\n", s1.sno, s1.name);
return 0;
}