Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8664567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T17:16:18+00:00 2026-06-12T17:16:18+00:00

This is with regard to previous question posted a while ago Remove -1 entry

  • 0

This is with regard to previous question posted a while ago
Remove -1 entry from integer array

I know there are blazing fast solutions , one line answers as posted in answer section to previous posted question , but being a newbie I tried doing by for loops.

  int[] arr = new int[]{ 1, -1, -1, 1 };
            int[] new_arr;
            int index = 0;
            for (int i = 0; i < arr.Length; i++)
            {
               // Console.WriteLine(arr[i]);
                if (arr[i] == -1)
                    continue;
                else
                    new_arr[index++] = arr[i];
            }

I am getting error

Use of unassigned local variable ‘new_arr’

what am I doing wrong.

EDIT

        int[] arr = new int[]{ 1, -1, -1, 1 };
        int[] new_arr = new[arr.Length]; //Error being shown at this line
        int index = 0;
        for (int i = 0; i < arr.Length; i++)
        {

            if (arr[i] == -1)
                continue;
            else
                new_arr[index++] = arr[i];
        }

        for(int j=0;j<new_arr.Length;j++)
            Console.WriteLine(new_arr[j]);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T17:16:19+00:00Added an answer on June 12, 2026 at 5:16 pm

    You haven’t initialized your array new_arry. You need to specify its size.

    int[] new_arr = new int[10];
    

    Inside your code you are doing:

    new_arr[index++] = arr[i];
    

    Here since the array has not been initialized and you are trying to use it, that is why you are getting this error.

    You may use List<int> instead of the array, because it seems you are not sure about the Size of the array in your code.

    So your code would be:

    int[] arr = new int[]{ 1, -1, -1, 1 };
    List<int> tempList = new List<int>();
    int[] new_arr;
    int index = 0;
    for (int i = 0; i < arr.Length; i++)
          {
           // Console.WriteLine(arr[i]);
             if (arr[i] == -1)
                  continue;
             else
                tempList.Add(arr[i]);
          }
    new_arr = tmepList.ToArray();
    

    Or the complete code can be shorten to:

    int new_arr = arr.Where(r=> r!= -1).ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have few question in this regard When you create an internet page, does
I know there is ongoing work for in this regards but what is the
This question is in regards to this blog entry. https://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/ All the way at
I had posted a question in regards to this code. I found that JTextArea
I have just asked this question an hour ago but with regards to IE8
Continuing from a previous question , I keep searching for the optimal way to
From the following previous question ( AspectJ - Presence of annotation in join point
With regard to my previous question ( Lucene downgrade 3.6.0 to 3.5.0 ) I
There are some posts on this, but not an answer to this specific question.
I have taken the working code from this thread: Creating Next and Previous buttons

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.