Using pointer arithmetic to calculate sum of array in C
In this program, we need to use pointer arithmetic to find the sum of array elements.
Here we use * to represent the value stored at the memory address, and the address will remain stored in the variable. So "int *ptr" means that ptr is a variable containing an address whose content is an integer.
*p means it is a pointer variable. Using this and sum() we will find the sum of the array elements.
Sample code
<span class="com">#include</span><span class="pln"> </span><span class="str"><stdio.h></span> <span class="kwd">void</span><span class="pln"> s</span><span class="pun">(</span><span class="kwd">int</span><span class="pun">*</span><span class="pln"> a</span><span class="pun">,</span><span class="pln"> </span><span class="kwd">int</span><span class="pln"> len</span><span class="pun">) </span><span class="pun">{</span> <span class="kwd"> int</span><span class="pln"> i</span><span class="pun">,</span><span class="pln"> s_of_arr </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span> <span class="kwd"> for</span><span class="pln"> </span><span class="pun">(</span><span class="pln">i </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln"> i </span><span class="pun"><</span><span class="pln"> len</span><span class="pun">;</span><span class="pln"> i</span><span class="pun">++)</span> <span class="pln"> s_of_arr </span><span class="pun">=</span><span class="pln"> s_of_arr </span><span class="pun">+</span><span class="pln"> </span><span class="pun">*(</span><span class="pln">a </span><span class="pun">+</span><span class="pln"> i</span><span class="pun">);</span> <span class="pln"> printf</span><span class="pun">(</span><span class="pln"> </span><span class="str">"sum of array is = %d"</span><span class="pln"> </span><span class="pun">,</span><span class="pln">s_of_arr</span><span class="pun">);</span> <span class="pun">}</span> <span class="kwd">int</span><span class="pln"> main</span><span class="pun">() </span><span class="pun">{</span> <span class="kwd"> int</span><span class="pln"> arr</span><span class="pun">[]</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="pun">{</span><span class="pln"> </span><span class="lit">1</span><span class="pun">,</span><span class="lit">2</span><span class="pun">,</span><span class="lit">4</span><span class="pun">,</span><span class="lit">6</span><span class="pun">,</span><span class="lit">7</span><span class="pun">,-</span><span class="lit">5</span><span class="pun">,-</span><span class="lit">3</span><span class="pln"> </span><span class="pun">};</span> <span class="pln"> s</span><span class="pun">(</span><span class="pln">arr</span><span class="pun">,</span><span class="pln"> </span><span class="lit">7</span><span class="pun">);</span> <span class="kwd"> return</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span> <span class="pun">}</span>
Output
Sum of array = 12
Algorithm
Begin Initialize array to hold the variables. Call function s to get the sum of the variables. Print the sum. End.
The above is the detailed content of Using pointer arithmetic to calculate sum of array in C. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



When a generic function handles pointer types in Go, it will receive a reference to the original variable, allowing the variable value to be modified. Reference types are copied when passed, making the function unable to modify the original variable value. Practical examples include using generic functions to compare strings or slices of numbers.

Pointer precision is crucial in situations where higher precision and better cursor positioning are required. It is enabled by default in Windows 11, but you may need to reconfigure enhanced pointer precision for better performance. For example, you might not want Windows to automatically re-adjust the pointer speed, but instead cover a fixed distance when making similar mouse movements. What is enhanced pointer precision? Enhanced pointer precision adjusts how far the cursor moves based on how fast the mouse is moving. Therefore, the faster the mouse moves, the greater the distance covered. For those wondering what Windows Enhanced Pointer Precision does, it changes mouse sensitivity. How to turn enhanced pointer precision on or off in Windows 11? 1. Press through Settings

The debate in online communities about whether the mouse or the keyboard is the most important part of the system is likely to continue forever. But when something goes wrong with your mouse pointer, you have to put everything aside and you can't rest until you find a permanent solution to your problem. In this article, we have curated the best solutions for the rare mouse pointer orientation issue. Move the pointer to the right and it moves to the left on the screen and vice versa? Just follow these simple steps. Workaround – If this is the first time you are encountering this issue, follow the steps below - 1. Detach the mouse from the system and reconnect it. Usually, this solves the problem. 2. If you are using a Bluetooth mouse, please check the battery level of the mouse. 3. Try to connect the mouse with another

Differences: 1. The meanings are different. "*p" represents the content stored in the memory address pointed by this pointer. "p" represents the name of a pointer variable, which refers to the memory address pointed by this pointer variable. 2. The output formats are different. "*p" usually outputs a variable or constant of the same type as the pointer. "p" outputs a hexadecimal number and the address of a pointer. 3. The functions are different. "*p" tells the program to go to that address to retrieve data, and "p" is used to store the address.

The pointer type approach is available in Go language, which allows you to define a function of pointer type in order to modify the value pointed to without explicitly passing the pointer in the method signature. This provides code simplicity and efficiency since copy-by-value passes do not need to be copied. The syntax of pointer type method is: typeTypeName*Type\nfunc(t*TypeName)MethodName(). To use pointer type methods, you create a pointer to an instance of the type and then use that pointer to call the method. The benefits of pointer type methods include code simplicity, efficiency, and modifiability. It should be noted that the pointer type method can only be used for pointer types, and you need to be careful when using it, because the structure value pointed to may be accidentally

C++ is an object-oriented programming language, and its flexibility and power often provide programmers with great help. However, precisely because of its flexibility, it is difficult to avoid various small errors when programming. One of the most common mistakes is that when a function returns a pointer or reference, it cannot return a local variable or temporary object. So how to deal with this problem? This article will introduce the relevant content in detail. The cause of the problem is that in the C++ language, local variables and temporary objects are dynamically allocated during the running of the function. When the function ends, these local variables and temporary

Low-level programming languages, such as C or C++, often use pointers to directly manipulate memory. They enable efficient memory management and low-level data operations. Thelow-levelcomplexitiesofmemoryadministrationareabstractedawayinPython,ahigh-levellanguage.Becauseofthis,PythonlacksexpresspointersinanequalmannerthatCorC++.Asanalternative,Pythonmakesuseofanideacompa

References and pointers in C++ are both methods of passing function parameters, but there are differences. A reference is an alias for a variable. Modifying the reference will modify the original variable, while the pointer stores the address of the variable. Modifying the pointer value will not modify the original variable. When choosing to use a reference or a pointer, you need to consider factors such as whether the original variable needs to be modified, whether a null value needs to be passed, and performance considerations.
