anti virus

anti virus

  • NA
  • 17
  • 3.2k

assigning to array

Dec 14 2018 2:16 PM
want to assing array of int types values 10; 15; 20; 25 to marks array thats what i have done so far
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp15
{
class Program
{
static void Main(string[] args)
{
int[] marks;



for (int i = 0; i < marks.Length; i++)
{
Console.Write(marks[i] + " ");
}
}
}
}

Answers (2)