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 10 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.
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is a pointer in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
what is the difference between NULL('\0') and 0?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
how to find out the union of two character arrays?
How can type-insensitive macros be created?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
what does exit() do?
Explain what is a program flowchart and explain how does it help in writing a program?
which is faster execution: loops or recursion?
How can I prevent another program from modifying part of a file that I am modifying?