I need to create a string that contains "To Mr.:\n" and the name of the person in question ( pessoa->nome
).
char* endereca(Pessoa* pessoa)
{
if(pessoa->sexo == 'M')
{
char *msg;
msg = (char*)malloc(7*sizeof(char) + sizeof(pessoa->nome));
msg = "Ao Sr.:\n" + pessoa->nome; //Erro aqui
}
}