Write a program, maxmin.c, which finds the maximum and minimum of a set of
floats stored in the file samplesin.txt. You can assume that the number of values in the input file is less than 100.
Your main must use the following steps:
open the two files samplesin.txt and maxminout.txt.
read the values from samplesin.txt into the array x.
compute the maximum and minimum values found in the array x.
write the maximum and minimum values to the le maxminout.txt.
Your output file should look like :
There are 80 values in the array
The maximum value in the array is 63.605999
The minimum value in the array is 4.808900
Let
T:
R3→R2
be a linear transformation such that
(1,1,1) = (1,0),
(1,1,0) = (2, −1) and
(1,0,0) =
(4,3). What is
(2, −3,5)?
Write a program that displays the following menu to the user:
Press 1 for Permanent Employee
Press 2 for Daily wages Employee
After selecting the appropriate employee calculate salary and medical charges for the employees. Following menu would be displayed:
Press a to calculate Salary
Press b to calculate medical charges.
The daily wages employees are paid 400 per hour while permanent employees are paid 800 per hour.When you would calculate the salary, first you need to ask for the number of hours for which the employee has worked so far. The permanent employees are paid 5% medical charges of their total salary while daily wages are paid 3% of medical charges. For calculating medical allowance no further selection/input is required.
Write a program that ask the users to enter three characters. Then the program should display the
following menu
1. Sort in Ascending order
2. Sort in Descending order
The program should perform sorting of these three characters in ascending or descending order as per the user requirement.
Write a program which asks the user to open a bank account either Current or Savings. Your program will
display the following menu at the start:
Press 1 for Current Account
Press 2 for Savings Account
On the selection of account type, the user will open an account by providing an initial amount. In current account the initial amount for opening an account would be 2000 and for savings it would be 5000. After choosing the account type and opening the account with initial amount, your program will display the following menu:
Press a for Deposit the money
Press b for withdrawing the money
In current account the user cannot withdraw more than 10000 rupees. In Savings account the user cannot withdraw more than 25000. When the user withdraws amount make sure that amount should not be more than the balance in account and at the end of withdrawal transaction, there should be minimum of 500 rupees for each account.
Write a program which calculates the monthly Budget of a person. The program will read the
monthly salary of the person. Then give following options:
Press 1 to calculate gas bill charges
Press 2 to calculate electricity bill charges
Press 3 to calculate fueling charges.
Press 4 to calculate house rent charges
His monthly gas bill charges are 10% of his salary, electricity bill charges are 5% of his salary. His monthly
fueling charges are 10% of his salary, and his house rent charges are 15 %. Your program will calculate and
display the corresponding charges based on the selection (1, 2, 3, or 4)
Write a program that reads 10 integers from user and then finds and prints all the Odd numbers that are divisible by 5.
How many time will the loop run?
int count = 11;
while( count <= 31 )
{
count++;
}
What will the value of the result variable be after the code segment below has been run.
int result;
int number1 = 6, number6 = 49;
result = number1 * number6;
How many time will the loop run?
for( int i = 19 ; i < 93 ; i++ )
{
}