Write the function copyodds which copies the odd numbers from array b and appends them to the partially-filled array a. Return the number of elements copied.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section10.4: Passing Addresses
Problem 4E
icon
Related questions
Question

C++

Write the function copyodds which copies the odd numbers from array b and appends them to the
partially-filled array a. Return the number of elements copied.
arrays.cpp
1
#include <iostream>
using namespace std;
3
2
int copyodds(int a[], size t& sizeA, size t capacity, const int b[], size t sizeB)
{
int copied{0};
4
5
7
8
9.
10
return copied;
11
Demo.cpp
#include <iostream>
#include <string>
using namespace std;
1
2
4
5
#include "arrays.h"
7
int main()
{
int a[24] = {2,6,9,2,5,4,7,0,11,7,8,8,10,2,4};
int b[24] = {4,5,2,1,4,7,2,6,2,6,3,6,7,2,2};
size t sizeA = 0, sizeB = 5;
print("a->", a, sizeA);
print("b->", b, sizeB);
int copied = copy0dds(a, sizeA, 24, b, sizeB);
cout « "copied:
print("after a->", a, sizeA);
cout « endl;
int c[24] = {14,7,4,2,21,9,5};
print("a->", a, sizeA);
print("c->", c, sizeB);
copied = copy0dds(a, sizeA, 24, c, sizeB);
cout « "copied: " « copied « endl;
print("after a->", a, sizeA);
8
10
11
12
13
14
15
« copied « endl;
16
17
18
19
20
21
22
23
24
25
}
CodeCheck
Reset
Transcribed Image Text:Write the function copyodds which copies the odd numbers from array b and appends them to the partially-filled array a. Return the number of elements copied. arrays.cpp 1 #include <iostream> using namespace std; 3 2 int copyodds(int a[], size t& sizeA, size t capacity, const int b[], size t sizeB) { int copied{0}; 4 5 7 8 9. 10 return copied; 11 Demo.cpp #include <iostream> #include <string> using namespace std; 1 2 4 5 #include "arrays.h" 7 int main() { int a[24] = {2,6,9,2,5,4,7,0,11,7,8,8,10,2,4}; int b[24] = {4,5,2,1,4,7,2,6,2,6,3,6,7,2,2}; size t sizeA = 0, sizeB = 5; print("a->", a, sizeA); print("b->", b, sizeB); int copied = copy0dds(a, sizeA, 24, b, sizeB); cout « "copied: print("after a->", a, sizeA); cout « endl; int c[24] = {14,7,4,2,21,9,5}; print("a->", a, sizeA); print("c->", c, sizeB); copied = copy0dds(a, sizeA, 24, c, sizeB); cout « "copied: " « copied « endl; print("after a->", a, sizeA); 8 10 11 12 13 14 15 « copied « endl; 16 17 18 19 20 21 22 23 24 25 } CodeCheck Reset
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr