
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
Topic Video
Question
thumb_up100%
Fortran Linking Multiple Files Together: I have a main fortran file. This file calls on ProgramA, ProgramB and ProgamC. The function to compute the area is pi x radius^2 x A for programA, pi x radius^2 x B for progam B and the same for programC.
I'm not sure what to put down for ProgramA.f90, ProgramB.f90 and ProgramC.f90 it has inputs for radius and A, B or C respectively. I also need a printout once the functions/programs ProgramA, ProgramB and ProgramC are callled. This is my main.f90:
implicit none
real:: A,B,C, radius
A = 10
B =5
C = 2
radius = 3
!read*,radius
call programA(radius,A)
call programB(radius,B)
call programC(radius,C)
end program practicedynamo
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 5 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
- IN C PROGRAMMING LANGAUGE AND COMMENT EVERY LINE PLEASE SO THAT I COULD UNDERSTAND Write a program that processes a data file of names in which each name is on a separate line of at most 80 characters. Here are two sample names: Hartman-Montgomery, Jane R. Doe, J. D. On each line the surname is followed by a comma and a space. Next comes the first name or initial, then a space and the middle initial. Your program should scan the names into three arrays—surname, first, and middle_init. If the surname is longer than 15 characters, store only the first 15. Similarly, limit the first name to ten characters. Do not store periods in the first and middle_init arrays. Write the array’s contents to a file, aligning the contents of each column: Hartman-Montgom Jane R Doe J Darrow_forwardWrite a complete C++ program in one file which takes a double value from the user, cubes it, and prints the result. Your program must use a function which takes a parameter for the value to be cubed and returns the result by reference. The function may not print anything or read anything directly from the user (i.e. no cin/cout in the function). Hint: n cubed is defined as n*n*n.arrow_forwardPlease write this C++ program using vector of objects as per the following instructions ( read carefully ). Explain all your steps as if any beginner could understand like how many cpp files or text files should be there. Are the 2 txt files w old and new ta indie or only 1? this task needs to be done with vector of TAs object. Please explain how does it work as I don't know anything about it. Any explanation and comment is very needed . please don't copy from any other sources .please write on your own or skip. PLEASE ATTACH PICTURES w te written code and show the output too Thank you so much for your time and helparrow_forward
- Develop a C++ program that reads an unsigned number in some base and outputs theequivalent value in a target base. The input file providing these values will be organized toallow for comment lines and blank lines along with data lines. Use only a single source file so Ican more easily script the downloading and compiling of your submissions.Your program must require a single command line argument, the name of an input file. Thisinput file will consist of any number of lines, each falling into one of three varieties:1. Comment - These lines always start with an at-symbol ('@') and should be completelyignored.2. Blank line - Used to visually organize the input file and should be completely ignored.3. Data line - These are the ones your program will process and are described below.Data lines will all have exactly 3 items separated by a single space character and end with anewline:1. an input base (2 through 36) identified in decimal. Digits representing coefficientsbetween 10 and 35 will…arrow_forwardCan anyone help me with these coding questionsarrow_forwardPlease help. Use strtol and strtod.arrow_forward
- Write a C code to take input from an input .txt file and write into an output file. The input file should have int type values and the output file should contain the square of each inputfrom the input file. Must use file type pointers implementation. A sample input and output are given as follows:Input:1 2 3 4 5Output:1 4 9 16 25arrow_forwardWrite a C++ program that read 12 integer values from user, store values in Matrix of 4 X 3. Create another Matrix of 4 X 3, divide each element of Matrix1 by five, and store the result in the Matrix2. Print Matrix A, with heading shown, correctly spaced.Print Matrix B, with heading shown, correctly spaced.Your Program should display output as follows:arrow_forwardMake a C program that gets a source file name from a user. If the file does not exist, it will generate a proper error and exits. If the file exists, it also gets the name of two more files from the user, say destination1 and destination2. These files don't need to exist as they are files that need to be written to. If the files cannot be opened for writing, a proper error will be generated. The program then reads the source file line by line. It will copy every line that has a digit in it to destination 2 and lines that have no digit in them to destination 1. Feel free to use ctype's isdigit() function to identify digit characters. Example: If source file is: Hi My name is Veria Hello My name is John. How can I help you? I have a problem with my giga bit internet. The speed should be around 1000 but it's just 200 Sure! I can help with that. Can I have your number in case we get disconnected? Sure! My number's 647-123-1234 First file (destination 1) should be Hi My name is…arrow_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