6. Rewrite the example 5 to print the array in reverse order.
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
Need help with example 6 in c++ please and thank you

Transcribed Image Text:8:12 A
al 31%
M11- Pointers - Read-only
Sign in to edit and save changes to this...
Example 6, 7, 8
6. Rewrite the example 5 to print the array in reverse order.
7. Define a character (char) array of 5 alphabets
{'a','b','c','d','e'}, and a character pointer. Assign the first
array element to the pointer. Then use for loop to print all the
five elements of this array (see example 5).
8. Define a double array of 5 elements {3.2, 4.5, 1.2, 8.7, 5.6}.
Using pointer to increment, find the largest number. (Module
M8)
Notes
Comments
Euple S- printing an aray ing peint
Exaupla 6. 7,8
Common Pointe Problam
6Revn an te inre
T Dfeacha
w..VLeidw At
tep The tep
L pi fidthe naber
14
15
16

Transcribed Image Text:8:12
al 31%
M11- Pointers - Read-only
Sign in to edit and save changes to this...
Example 5- printing an array using pointer
Algorithm
1. Declare a double array of 5 decimal
numbers
1 / Pointers
2 //Example 5
3 ainclude ciastrean
4 sinclude <string>
using namespace std;
5
2. Declare a double pointer *p
3. Assign the address of the first element
of the array to pointer p (that is, pointer
is now pointing to the first array
element)
4. Print the element
5. Increment the pointer by 1.
6. Continue steps 4 and 5, until all the
elements have been printed.
7 int main()
double numls-(1.1, 2.2, J.3, 4.4, 5.5);
double "p:
pAnunfa); //ansign the array address
10
11
//or the first elenent
12
13
14
tor (int i-0; is; 1++
coute"pcc" *:
//print content of pointer
/incronent pointer
15
16
17 }
1-1 2.2 1.1 4.4 5.5
14
Notes
Comments
Eple 5- printing an ay ing peintw
Common Pointe Problam
Example d. 7,8
Reeri hee prs te my in e
T Dfeacha
tep The tep
e le
Lng pi i fdthe namhe
14
15
16
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 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