Swift program to create an array with mixed data elements

Here, we are going to learn how to create an array with mixed data elements in Swift programming language?
Submitted by Nidhi, on June 17, 2021

Problem Solution:

Here, we will create an array with different types of data elements using the Any keyword. Then we will print mixed data elements on the console screen.

Program/Source Code:

The source code to create an array with mixed data elements is given below. The given program is compiled and executed successfully.

// Swift program to create an array
// with mixed data elements

import Swift

var student: [Any] = [101,"Herry", 25000]

print(student)

Output:

[101, "Herry", 25000]

...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 an array student that contains student information like roll number, name, and fees. After that, we printed student information on the console screen.

Swift Array Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.