typedef struct dev{
string name;
string email;
string linkedin;
string studies;
}dev;
void LeonardoMachado(dev& my){
my.name = "Leonardo Goncalves Machado";
my.email = "leonardogm2003@gmail.com";
my.linkedin = "linkedin.com/in/leonardo-gonçalves-machado-a8a599249";
my.studies = "programming and mathematics";
}
- If you solve the mystery behind the function bellow, you are a legend.