
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
Question

Transcribed Image Text:**Consider the following program:**
```c
#include <stdio.h>
/* function declaration */
void function(int x, int *y, int *z);
int main () {
int a = 100, b, c;
function(a, &b, &c);
}
void function(int x, int *y, int *z) {
x = x + 2;
*y = x - 1;
*z = x + 1;
}
```
**What are the final values of a, b, and c respectively?**
**Select one:**
- a. (100, 101, 103)
- b. (102, 101, 103)
- c. (100, 99, 101)
- d. (102, 99, 101)
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 2 steps with 2 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
- C++ Write a void function that has two parameters: a value parameter called num that receives a floating point number from the calling function and a floating point reference parameter called result. The functions should do this calculation: 25.0 * num + 37 and store the answer in result. Do not do any read or write operations in the function.arrow_forward#include // Function to calculate the factorial of a given positive integer int factorial(int n) { // TODO: Implement the factorial function here } int main() { int num; printf("Enter a positive integer: "); scanf("%d", &num); // TODO: Call the factorial function and print the result } return 0; • Q1: Write a C program to calculate the factorial of a given positive integer entered by the user.arrow_forward14. What is the value of a and b after the function call myfunction1(a,b) in the main function? void myfunction1(int a, int &b) { a+t; b++; int main() { int a=5,b=53; myfunction1(a,b): } a) a=5,b=5 b) a=5,b=6 c) a=6,b=5 d) a=6,b=6arrow_forward
- In the code below, fill in the missing lines: #include #define MAX_EMP 1000 /* FUNCTION PROTOTYPES */ int main() { /* VARIABLE DECLARATIONS */ double EmpSales; double TotalSales; int EmployeeNum; TotalSales = 0; EmployeeNum = 1; while (EmployeeNum { <= MAX_EMP) EmpSales = // Call the GetSales subfunction TotalSales += EmpSales; ++EmployeeNum; } printf("\n\nTotal sales for the year are $%.2lf", TotalSales); fflush(stdin); getchar(); return 0; double GetSales(int EmployeeNum) { double EmpSales; printf("\nEnter sales for the year by Employee %d: ", ); fflush(stdin); scanf("\n%lf", ); //Read in sales returnarrow_forwardUsing this starter code: #include <stdio.h> //function prototypesvoid PrintLine(int length, char theChar);void PrintRectangle(int width, int height, char theChar);void PrintTriangle(int baseLength, char theChar);void PrintInvertedTriangle(int height, char theChar); int main(void) { char choice; int a, b; char character; //asking for user input printf("Which shape (L-line, T-triangle, R-rectangle, I-inverted triangle): \n"); scanf(" %c", &choice); printf("Which character: \n"); scanf(" %c", &character); switch (choice){ //if user input is for a triangle case 'T': case 't': printf("Enter an integer base length between 3 and 25: \n"); scanf("%d", &a); if (a >= 3 && a <= 25) PrintTriangle(a, character); else printf("Length not in range."); break; //if user input is for a rectangle case 'R': case 'r': printf("Enter an integer width and height between 2 and 25: \n");…arrow_forwardPython without Def function Problem Statement Define and implement a function time_delta that takes two string parameters (time1 and time2) and returns the difference between them (as a string). You may assume that the second time will always be after the first time, both times will always be on the same date, and military time will be used (no a.m. or p.m.). Examples time_delta(04:15:36, 16:35:27) ➞ (12:19:51) time_delta(02:06:05, 06:09:10) ➞ (04:03:05) Sample Input 1 "04:15:36" "16:35:27" Sample Output 1 "12:19:51"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