I want to add and display the total value of the query. In the case of 3 patients the sum would be 1350. But something is going wrong.
case 2 :
printf ("Particular:\n");
printf("O valor da consulta e de R$ 450,00: \n");
for(i=0;i<3;i++)
{
printf("Digite o nome do paciente:");
scanf("%s",&nome[i]);
valorp[i]= valorp[i]+450.00;
valortotal[i]=valorp[i];
qtdpaciente = qtdpaciente +i;
}
printf("A quantidade de pacientes particulas foi: %i \n", qtdpaciente);
printf("o valor total de hoje foi: %.2f\n",valortotal[i]);
break;