How to resolve the algorithm Arrays step by step in the உயிர்/Uyir programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Arrays step by step in the உயிர்/Uyir programming language

Table of Contents

Problem Statement

This task is about arrays. For hashes or associative arrays, please see Creating an Associative Array. For a definition and in-depth discussion of what an array is, see Array.

Show basic array syntax in your language. Basically, create an array, assign a value to it, and retrieve an element   (if available, show both fixed-length arrays and dynamic arrays, pushing a value into it). Please discuss at Village Pump:   Arrays.
Please merge code in from these obsolete tasks:

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Arrays step by step in the உயிர்/Uyir programming language

Source code in the உயிர்/uyir programming language

        இருபரிமாணணி வகை எண் அணி {3, 3};
        இருபரிமாணணி2 வகை எண் அணி {3} அணி {3};
        என்_எண்கள் வகை எண் {#5.2} அணி {5} = {3.14, 2.83, 5.32, 10.66, 14};
        சொற்கள் வகை சரம் {25} அணி {100};
        உயரங்கள் = அணி {10, 45, 87, 29, 53};
        பெயர்கள் = அணி {"இராஜன்", "சுதன்", "தானி"};
        தேதிகள் = அணி {{5, "மாசி", 2010}, {16, "புரட்டாசி", 1982}, {22, "ஆவணி", 1470}};
        செவ்வகணி = அணி { அணி {10, 22, 43}, அணி {31, 58, 192}, அணி {46, 73, 65} };
        முக்கோண்ணி = அணி { அணி {1}, அணி {2, 3}, அணி {4, 5, 6}, அணி {7, 8, 9, 1, 2} };

  

You may also check:How to resolve the algorithm Substitution cipher step by step in the Ring programming language
You may also check:How to resolve the algorithm Loops/While step by step in the Odin programming language
You may also check:How to resolve the algorithm Palindrome detection step by step in the Visual Basic .NET programming language
You may also check:How to resolve the algorithm File modification time step by step in the GUISS programming language
You may also check:How to resolve the algorithm Abundant odd numbers step by step in the EasyLang programming language