5) Make a program that receives the base salary of an employee, calculate and show your salary to receive, knowing that the employee has a bonus of $ 50 and pays 10% tax
#include <stdio.h>
int main()
{
float sal,imposto,s_final;
printf(" CALCULO DE SALARIO \n \n");
printf("Digite seu salario: ");
scanf("%f",&sal);
imposto= sal/100 * 0.1;
s_final = sal-imposto+50;
printf("Salario a receber: %f reais \n",&s_final);
printf("Valor dos impostos: %f reais",&sal);
return 0;
}