1
I’m trying to define the value of a char vector of a struct within an if, but without success...
The struct itself:
struct ficha {
char nome[31], classificacao[31], telefone[21];
float altura, peso, imc;
}paciente1, paciente2, aux;
Follow the attempts to:
Tenttiva 1:
if (paciente1.imc<18.5) {
paciente1.classificacao = {"Abaixo do peso", 31};
} else if ...
Attempt 2:
if (paciente1.imc<18.5) {
paciente1.classificacao = "Abaixo do peso";
} else if ...
Attempt 3:
if (paciente1.imc<18.5) {
paciente1.classificacao = ("Abaixo do peso", [31]);
} else if ...
Thanks in advance for your help !
Thanks @Pedro Lorentz, solved the problem !!
– Victoralm