The source code to pass an array into a user-defined function is given below. The given program is compiled and executed successfully.
// Swift program to pass an array into
// a user defined function
import Swift
func AddElements(arr: [Int]) -> Int {
var sum = 0
for item in arr {
sum = sum + item
}
return sum
}
let arr:[Int] = [1,2,3,4,5,6,7,8]
var res = AddElements(arr:arr)
print("Sum of array elements is: ",res)
Output:
Sum of array elements is: 36
...Program finished with exit code 0
Press ENTER to exit console.
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
import Swift;
Here, we created a user-defined function AddElements(). The AddElements() function accepts an integer array as a parameter and returns the sum of array elements to the calling position and then we printed the result on the console screen.
Program/Source Code:
The source code to pass an array into a user-defined function is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
Here, we created a user-defined function AddElements(). The AddElements() function accepts an integer array as a parameter and returns the sum of array elements to the calling position and then we printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer