fork download
#include<iostream>
using namespace std;

struct st{
char name[50];
int id;
};

int main(){
struct st s[3];


    cout<<"Student please enter their name: "<<endl;
    cin>>s[1].name;
    cout<<"Enter your id"<<endl;
    cin>>s[1].id;

    cout<<s[1].name<<endl;
    cout<<s[1].id<<endl;
}
Success #stdin #stdout 0s 15232KB
stdin
xyz
12
stdout
Student please enter their name: 
Enter your id
xyz
12