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 []. A: 34 21 90 46 45 91 18 79 64 99 B: 99 90 64 45 21 18 34 46 79 91 0 1 2 3 4 5 6 7 8 9 A 34 21 90 46 45 91 18 79 64 99 B 99 90 64 45 21 18 the largest the third largest number in A number in A ****** 34 46 79 the fourth largest number in A 91 the second largest number in A
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 []. A: 34 21 90 46 45 91 18 79 64 99 B: 99 90 64 45 21 18 34 46 79 91 0 1 2 3 4 5 6 7 8 9 A 34 21 90 46 45 91 18 79 64 99 B 99 90 64 45 21 18 the largest the third largest number in A number in A ****** 34 46 79 the fourth largest number in A 91 the second largest number in A
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
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](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fe5f5f862-a2d1-4362-b18a-d6c587e08392%2F4587cea8-9460-42c9-9a4c-01943ebe7d82%2Fy3rw5oa_processed.jpeg&w=3840&q=75)
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](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fe5f5f862-a2d1-4362-b18a-d6c587e08392%2F4587cea8-9460-42c9-9a4c-01943ebe7d82%2Finjcfg9_processed.jpeg&w=3840&q=75)
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 now
This is a popular solution!
Step by step
Solved 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.Recommended textbooks for you

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

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