Write the program with at least two functions to solve the
following problem. The members of the board of a small
university are considering voting for a pay increase for
their 5 faculty members. They are considering a pay
increase of 8%. Write a program that will prompt for and
accept the current salary for each of the faculty members,
then calculate and display their individual pay increases.
At the end of the program, print the total faculty payroll
before and after the pay increase, and the total pay
increase involved.
Answer / sammy
#include <stdio.h>
#include <stdlib.h>
double getIncrease (double curSal);
int main (void)
{
double CurrentSal[3];
double payIncreases[3];
for(int i=0; i<3; i++)
{
printf("Enter the salary for employee %d: $", i+1);
scanf("%d", &CurrentSal);
}
for (int j=0; j<3; j++)
{
payIncreases[j] = getIncrease(CurrentSal[j]);
printf("The pay increase for employee %d is $%d\n",j+1,
payIncreases[j]);
}
system ("pause");
return 0;
}
double getIncrease (double curSal)
{
double PayIncrease;
PayIncrease = curSal*.08;
return PayIncrease;
}
| Is This Answer Correct ? | 1 Yes | 1 No |
What are local and global variables?
How do c compilers work?
What is the difference between array_name and &array_name?
write a program whose output will be- 1 12 123 1234
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
How do you redirect a standard stream?
Compare and contrast compilers from interpreters.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is structure of c program?
What is d scanf?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
what is the difference between procedure oriented and object oriented progaming language