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
icon
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
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
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
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Arrays
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education