ShriRam Changed status to publish July 16, 2022
#include<stdio.h> #include<conio.h> main() { struct student { int age; char name[200]; }; struct student s1; printf("Enter Name and age"); scanf("%s%d",s1.name, &s1.age); printf("%s%d",s1.name, s1.age); getch(); }
ShriRam Changed status to publish July 16, 2022