#include<iostream>
using namespace std;
int main(){
struct{
string tr1;
int age;
string G;
}Mystructure;
// memebers
Mystructure.tr1 = "Anup Tirkey";
Mystructure.age = 35;
Mystructure.G = "Male";
cout<<Mystructure.tr1<<"\n";
cout<<Mystructure.age<<"\n";
cout<<Mystructure.G<<"\n";
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: