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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:59:37+00:00 2026-05-28T01:59:37+00:00

I made a simple routine to sort an array witch accepts as a parameter

  • 0

I made a simple routine to sort an array witch accepts as a parameter an array of ints the problem is that when i compare the values array[i] shows the correct value in the debugger but array[i + 1] shows a bogus value … i guess is a pointer issue but i can’t figure it out what i am doing wrong.

Here is the code :

typedef int vector[10];

void task1(vector * param)
{
    bool ordered = false;
    while (!(ordered))
    {
        int tmp = 0;
        ordered = true;
        for (int i = 0; i < 9 ; i++)
        {
            if (*param[i] > *param[i+1])
            {
                tmp = *param[i];
                *param[i] = *param[i + 1];
                *param[i + 1] = tmp;
                ordered = false;
            }
        }
    }

}

int _tmain(int argc, _TCHAR* argv[])
{
    vector tavi = {10,88,77,192,7,27,82,1,882,13};

    task1(&tavi);
    for (int i = 0 ; i < 10 ; i ++)
        printf("%d ",tavi[i]);

    _getch();


    return 0;
}
  • 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-05-28T01:59:37+00:00Added an answer on May 28, 2026 at 1:59 am

    The subscript-operator ([]) has a higher precedence than the derefence-operator (*), so *param[i] is actually *(param[i]). This means, you first go to the i-th element of param, and then dereference it – that is not what you want (param is not a pointer into an array). You want to dereference param and then go to the i-th element – this would be (*param)[i].

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We made a simple application and using GoogleAppEngineLauncher (GAEL) ran that locally. Then we
For an assignment I've made a simple C++ program that uses a superclass (Student)
I'm learning java and I have made simple program that simply reads value from
I made a simple java program that sends bytes to the parallel port, which
I made a simple application, then submitted for review. After that the app details
hi im fairly new to cms made simple and ive stumbled upon a problem
I've made simple classes that simulate the classes I have (sorry I had to
On Windows, testing different OSes is made simple using VMs. Is there a simple
I made a simple counter, but it increments by 2 instead of 1. $handle
I've made a simple http server using Twisted, which sends the Content-Type: multipart/x-mixed-replace header.

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.