C + + Primer (fourth edition) after class exercise 4.18

Source: Internet
Author: User

Problem:

Write a program that uses pointers to write a program that uses pointers to set all elements of an int array to 0.

Code:

1#include <iostream>2 3 using namespacestd;4 5 intMain ()6 {7     Constsize_t Size =5;8     intArr[size] = {0,1,2,3,4};9      for(int*pbegin=arr, *pend =arr+size;           Pbegin! = Pend; pbegin++)Ten     { One*pbegin =0; A     } -      for(int*pbegin=arr, *pend =arr+size; Pbegin! = Pend; pbegin++) -     { thecout<<*pbegin<<" "; -     } -     return 0; -}
View Code

Summarize:

(1) using pointers to iterate through an array, using a similar container vector, use an array of out-of-the-end pointers as Sentinels and judge the loop to end.

(2) C + + allows you to calculate an out-of-end pointer to an array or object, but does not allow a dereference of this address.

C + + Primer (fourth edition) after class exercise 4.18

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.