Lab 3: Array and Function with C++ PDF
Document Details
Uploaded by HardyChiasmus8244
Cihan University
2025
Mohammed L. Mahmoud
Tags
Summary
This document contains C++ programming exercises related to arrays and functions. It includes a lab assignment titled "Lab 3: Array and Function with C++". The document showcases a solution example to calculate the Sum of the array elements by using C++. The document aims to teach students about working with arrays and functions in C++.
Full Transcript
Lab 3: Array and Function with C++ BY: MOHAMMED L. MAHMOOD [email protected] FALL – 2024/2025 Array Write a C++ program to calculate the sum of all elements in a one- dimensional array. ...
Lab 3: Array and Function with C++ BY: MOHAMMED L. MAHMOOD [email protected] FALL – 2024/2025 Array Write a C++ program to calculate the sum of all elements in a one- dimensional array. Solution int main() { #include using namespace std; int arr[] = { 5, 10, 15, 20, 25 }; int sum = 0; for (int i = 0; i < 5; i++) { sum += arr[i]; } cout