Here, we will create a structure with the init() function and then initialize structure members and print them on the console screen.
Here, we will use the "self" keyword to access the structure members within the init() function. The "self" keyword is used to differentiate the structure members and function parameters with the same name.
Program/Source Code:
The source code to demonstrate the "self" keyword with structure 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 structure Student with three fields id, name, and fees and created init() function to initialize member of Student structure. Then we created the structure variable stu and initialized the values of structure properties. After that, we printed the student information on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer