#include <iostream>
#include<string>
using namespace std;
int main(){
struct{
int num;
string st1;
string st2;
string st3;
string st4;
string st5;
}pl;
pl.num = 1987;
pl.st1 = "Anup Tirkey.";
pl.st2 = "Anup Tirkey is a SAI Engineer.";
pl.st3 = "Anup Tirkey is a Mechanical Engineer , NIT.";
pl.st4 = "Anup Tirkey is a NIT.";
pl.st5 = "show the mechanical constraint is reporting to Anup Tirkey in ERP in system.";
cout<<pl.num<< " "<<pl.st2<< " "<< pl.st3<<" "<<pl.st4<< " "<<pl.st5<< endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: