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 73311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:10:53+00:00 2026-05-10T20:10:53+00:00

I have this as Main int[] M ={ 10, 2, 30, 4, 50, 6,

  • 0

I have this as Main

int[] M ={ 10, 2, 30, 4, 50, 6, 7, 80 };  MyMath.Reverse(M);  for (int i = 0; i < M.Length; i++)      Console.WriteLine(M[i].ToString() + ', '); 

After I created the class MyMath I made the Reverse method

public int Reverse(Array M)  {      int len = M.Length;        for (int i = 0; i < len / 2; i++)         {            int temp = M[i]; M[i] = M[len - i - 1]; M[len - i - 1] = temp;         }             } 

but I’m sure it’s wrong because it’s not working 🙂 so do you have a different code to write in the reverse method?

note: I don’t want to use the built in Reverse in the Array class


yes guys when i used the built in reverse method i got this error

Process is terminated due to StackOverflowException.

thats after i wrote the method as

public static int Reverse(Array M) {     return Reverse(M); } 

So then I tried to create my own reverse method and there i got stuck

  • 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. 2026-05-10T20:10:54+00:00Added an answer on May 10, 2026 at 8:10 pm

    Working from your

    public static int Reverse(Array M) {     return Reverse(M); } 

    You have 2 problems.

    1. Reverse(M) looks like the same function that you’re in, so you’re calling your new function, which calls itself, which calls itself, etc., resulting in the stack overflow. Change to return Array.Reverse(M);
    2. Array.Reverse returns a void, so if you need to return an int (not sure what it’s supposed to be here) you’ll need to supply your own. Or change your Reverse function to be void.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

everyone, I have this piece of the code: void foo(int var, int var1) {
I have this example code: #include template<class T> class Class { public: typedef boost::shared_ptr<Class<T>
I have this snippet of C code: #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Date {
I have this simple problem that gets an input from the user using a
I have a legacy C Linux application that I need to reuse . This
I'm trying to make a simple app with glade/gtk/vala. So far I have this:
I'm trying to figure out this problem for one of my comp sci classes,
Ok, so I have some problems with C++ iostreams that feels very odd, but
I'm trying to create a simple qDebug-like class I can use to output debug
I am a little confused as to how passing pointers works. Let's say I

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.