accept the degrees of an angle .determine the type of angle and display it
Write a C program that declares an array of structures of type ‘car’. and asks the user to fill in the elements. Once all the structures have been initialized, the program should present a menu to the user so that he can print a certain structure, or modify its elements.
Write a C program that declares an array of structures of type ‘car’, and asks the user to fill in the elements. Once all the structures have been initialized, the program should present a menu to the user so that he can print a certain structure, or modify its elements.
There is a structure called employee that holds information like employee code, name, date of joining. Write a program to create an array of the structure and enter some data into it. Then ask the user to enter the current date. Display the names of those employees whose tenure is 3 or more than 3 years according to the given current date.
There is a structure called employee that holds information like employee code, name, date of joining. Write a program to create an array of the structure and enter some data into it. Then ask the user to enter the current date. Display the names of those employees whose tenure is 3 or more than 3 years according to the given current date.
The supermarket has different variety of items in different weight. Find maximum weight from these items. Write a program to find maximum weight of an item using dynamic memory allocation
Write a C Program that does the following:
1. Declares a C-Structure called ‘car’.
2. It should contain the following elements.
a) A char array of size 20 to hold the make of the car e.g. Suzuki.
b) A char array of size 20 to hold the model of the car e.g. Alto
c) An integer capacity to store the seating capacity.
d) A floating-point number to hold the weight of the empty vehicle.
3. Then declare 3 variables of this type of structure.
4. Let the user populate the elements of these variables.
5. Print these structures
Write a C Program that does the following:
1. Declares a C-Structure called ‘car’.
2. It should contain the following elements.
a) A char array of size 20 to hold the make of the car e.g. Suzuki.
b) A char array of size 20 to hold the model of the car e.g. Alto
c) An integer capacity to store the seating capacity.
d) A floating-point number to hold the weight of the empty vehicle.
3. Then declare 3 variables of this type of structure.
4. Let the user populate the elements of these variables.
5. Print these structures
Create a structure IPL2022 with member’s team_name, matches_palyed,
won, lost, tied and total_points. There are 10 Teams participating in IPL.
Write a program to ask the user to enter the details team_name,
matches_palyed, won, lost, and tied; and calculate total_points for each
team. Display the final points table of IPL2022.
in a cricket game the two teams a and b have different characteristics of players in terms of batsman and bowlers. find similar characteristics of players using union operation. write a program for set operation using pointers.