Hello , Iam really struggling rightnow. This program should compute the deduction and total net income. there is no error in the program. but why it didnt compute the "DEDUCTION" and the "NET INCOME" Iam using C language.
#include <stdio.h>
#include <stdlib.h>
int main()
{
int withholdingtax;
int sss_contribution;
int salary;
int netincome;
int deduction;
printf ("ENTER SALARY :" ,&salary);
scanf("%d" ,&salary);
printf("\n");
printf ("ENTER WITHHOLDING TAX :" ,&withholdingtax);
scanf ("%d" , &withholdingtax);
printf("\n");
printf ("SSS CONTRIBUTION :" ,&sss_contribution);
scanf ("%d" , &sss_contribution);
printf ("\n");
deduction = (sss_contribution + withholdingtax);
netincome = (salary = deduction);
printf ("TOTAL DEDUCTION :" , &deduction);
printf ("\n");
printf ("TOTAL NET INCOME :" , &netincome);
return 0;
}

