Arrays and pointers (the and of all elements in an array)

Source: Internet
Author: User

//1. The following example evaluates all the elements in the array and//Array-to- pointer relationship, Integer is 4 bytes, a[] = = *a, a[i] = * (a+i)#include <stdio.h>#defineSIZE 10intSUM (intA[],intn);intMain () {intAR [SIZE] = {Ten, -, -, +, -, -, -, the, -}; Longanswer; Answer= SUM (AR, SIZE);//The emphasis is on this sentence, AR is int [10] Typeprintf"%lu\n",sizeof(answer));//answer is a long 8-byteprintf"answer=%lu\n", answer);//the result is a.    return 0;}intSUM (intA[]/***a*/,intN) {//two kinds of equivalence        intTotal =0, i =0;  for(i =0; I < n; i++) {//Total + = A[i]; //the two formulas above and below are equivalent,Total + = * (A +i); }    returnTotal ;}

The and of all the elements in the array.

Arrays and pointers (the and of all elements in an array)

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.