Q:

Swift program to create an array with mixed data elements

belongs to collection: Swift Array Programs

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 numbername, and fees. After that, we printed student information on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift program to check all array elements satisfy ... >>
<< Swift program to access array elements using forEa...