write a program that will accept the salary of an employee and add 2000 bonus to it
Answers
Answered by
1
Answer:
Explanation:
#include<stdio.h>
int main()
{
int salary,bonus = 0;
scanf("%d",&salary);
bonus = salary + 2000;
printf("%d",bonus);
}
mark as brainliest
Similar questions