
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
thumb_up100%
Write a program that declare a simple structure, declare at least two variables with different data type.

Transcribed Image Text:Kindly send the screenshots of your code and output
1. Write a program that declare a simple structure,
declare at least two variables with different data type.
2. Write a program to declare a structure and inside it
is method that returns the area of a rectangle.
Test Data and Sample Output:
Input the dimensions of a rectangle:
Length: 60
Width: 30
Expected Output:
Length: 60
Width: 30
Area: 1800
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 5 steps with 4 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- write a program in which Create a structure called time. Its three members, all type int, should be called hours, minutes, and seconds. Write a program that prompts the user to enter a time value in hours, minutes, and seconds. This can be in 12:59:59 format, or each number can be entered at a separate prompt (“Enter hours:”, and so forth). The program should then store the time in a variable of type struct time, and finally print out the total number of seconds represented by this time value: long totalsecs = t1.hours*3600 + t1.minutes*60 + t1.seconds. and write a function that obtains two time values from the user in 12:59:59 format, stores them in struct time variables, converts each one to seconds (type int), adds these quantities, converts the result back to hours minutes-seconds, stores the result in a time structure, and finally displays the result in 12:59:59 formatarrow_forwardWrite a C code. You should use scanf() and use printf to show the values that you have assigned. The structure type must have following information:Name of structure: city_pComponents of structure:Name (name of the city)Population (number of people in the city)In_California (is the city inside California or not)Speed_limit (usual speed limit inside the city)arrow_forwardDefine a structure type to represent a common fraction. Write a program that gets a fraction and displays both the fraction and the fraction reduced (by using greatest common divisor (GCD) function) to lowest terms using the following code fragment: The fraction is supposed to have a numerator and denominator.Code fragment: //starts here frac = get_fraction(); print_fraction(frac); printf(" = "); print_fraction(reduce_fraction(frac)); // ends herearrow_forward
- Write a C program Using structures Which: asks the user to enter the address and the price of a dozen for-sale residential properties in Santa Monica and stores them by their address, price, and type (i.e., condo, single-family home, or land) in an array of structures. It then prints the information for those properties which are under 1 million dollars.arrow_forwardIn C++ compile a program to fufill purpose mentioned below, not copied from internet please. Write a program that uses a structure named MovieData to store the following information about a movie:TitleDirectorYear ReleasedRunning Time (in minutes)The program should create two MovieData variables, store values in their members, and pass each one, in turn, to a function that displays the information about the movie in a clearly formatted manner.arrow_forwardA phone number, such as (212) 767-8900, can be thought of as having three parts: e.g, the area code (212), the exchange (767), and the number (8900). Write a program that uses a structure to store these three parts of a phone number separately. Call the structure phone. Create two structure variables of type phone. Initialize one, and have the user input a number for the other one. Then display both numbers. The interface might look like this: Enter area code: Enter exchange, Enter number: 415 555 1212 Then display like below: My number is (212) 767-8900 Your number is (415) 555-1212arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education