Diziler-1

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace Diziler1

{

    class Program

    {

        static void Main(string[] args)

        {

            int[] sayilar=new int[3];

            sayilar[0] = 23;

            sayilar[1] = 12;

            sayilar[2] = 34;


            int elemanSayisi = 2;

            string[] isimler=new string[elemanSayisi];

            isimler[0] = "hakan";

            isimler[1] = "şükür";


            char[] harfler = {'a','b','c'};

            int[] hedeler = {1,2,3,4,5 };


            bool[] durumlar = new bool[] {true,true,false,false };

            char[] ajsd = new char[] {'s'};


        }

    }

}