fork download
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. struct st{
  5. char name[50];
  6. int id;
  7. };
  8.  
  9. int main(){
  10. struct st s[3];
  11.  
  12.  
  13. cout<<"Student please enter their name: "<<endl;
  14. cin>>s[1].name;
  15. cout<<"Enter your id"<<endl;
  16. cin>>s[1].id;
  17.  
  18. cout<<s[1].name<<endl;
  19. cout<<s[1].id<<endl;
  20. }
Success #stdin #stdout 0s 15232KB
stdin
xyz
12
stdout
Student please enter their name: 
Enter your id
xyz
12