
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
Please written by computer source
provide in C++ and add comments
the result should be same with the picture in questions.
![Problem 1.
Fill array A with 10 distinct integers from 0 to 99. Fill array B using A as
follows. Write code using pointer instead of array symbol [].
0
A 34
A : 34 21 90 46 45
B: 99 90 64 45 21
91 18 79 64 99
18 34 46 79 91
5 6 7
1
8 9
2 3 4
21 90 46 45 91 18 79 64 99
B 99 90 64 45 21 18 34 46 79
the fourth largest
number in A
the largest the third largest
number in A number in A
******
FORUM
91
the second largest
number in A](https://content.bartleby.com/qna-images/question/e5f5f862-a2d1-4362-b18a-d6c587e08392/4587cea8-9460-42c9-9a4c-01943ebe7d82/y3rw5oa_thumbnail.jpeg)
Transcribed Image Text:Problem 1.
Fill array A with 10 distinct integers from 0 to 99. Fill array B using A as
follows. Write code using pointer instead of array symbol [].
0
A 34
A : 34 21 90 46 45
B: 99 90 64 45 21
91 18 79 64 99
18 34 46 79 91
5 6 7
1
8 9
2 3 4
21 90 46 45 91 18 79 64 99
B 99 90 64 45 21 18 34 46 79
the fourth largest
number in A
the largest the third largest
number in A number in A
******
FORUM
91
the second largest
number in A
![#include <iostream>
#include <iomanip>
using namespace std;
void fillA(int[]);
void fillB(int[], int []);
void printArray (int[]);
const int N = 10;
int main(void)
{
int i, A[N], B[N];
srand(time(NULL));
Do not modify main function.
In fillA, fillB, and printArray, you should use
pointer instead of array symbol [].
Do not use sorting algorithm (do not sort
the array A)
Do not make any extra spaces (do not make
extra arrays)
fillA(A);
printf("A: ");
printArray(A); // print out array A
// fill array A with random numbers
fillB(A, B); // fill array B using A
printf("B: ");
printArray (B); // print out array B
return 0;
CURTURE
I](https://content.bartleby.com/qna-images/question/e5f5f862-a2d1-4362-b18a-d6c587e08392/4587cea8-9460-42c9-9a4c-01943ebe7d82/injcfg9_thumbnail.jpeg)
Transcribed Image Text:#include <iostream>
#include <iomanip>
using namespace std;
void fillA(int[]);
void fillB(int[], int []);
void printArray (int[]);
const int N = 10;
int main(void)
{
int i, A[N], B[N];
srand(time(NULL));
Do not modify main function.
In fillA, fillB, and printArray, you should use
pointer instead of array symbol [].
Do not use sorting algorithm (do not sort
the array A)
Do not make any extra spaces (do not make
extra arrays)
fillA(A);
printf("A: ");
printArray(A); // print out array A
// fill array A with random numbers
fillB(A, B); // fill array B using A
printf("B: ");
printArray (B); // print out array B
return 0;
CURTURE
I
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

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
- Display the current date and time in output using library functions in ruby programming language. Attach code and output screenshot.arrow_forwardPlease write the code in C language thank youarrow_forwardWrite a C++ program to store the names of students in the class. The program should display the names in the reverse order. Use an STL container for storing the names and explain the reason for the choice.arrow_forward
- Please us c++ to make the code thank you very much!arrow_forwardWhen passing a C-style string as a parameter to a function - is the parameter passed by reference or default?arrow_forwardwrite a c++ code, in which a fucntion is using mathematical induction. add comments in each line of code.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