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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:46:11+00:00 2026-06-14T15:46:11+00:00

What is the difference between a an array being passed as a constant versus

  • 0

What is the difference between a an array being passed as a constant versus the array values being constants?

When passing an array of pointers to a function when every value is a constant:

`void display(Fraction* const ar[], int size);`

everything works fine but when the array is a constant

`void display(const  Fraction* ar[], int size);` 

the compiler gives the following error when calling the function:

`error C2664: 'display' : cannot convert parameter 1 from 'Fraction *[3]' to 'const Fraction *[]'`

main:

int main()
{
    Fraction* fArray[3];
    Fraction* fOne = new Fraction();
    Fraction* fTwo = new Fraction();
    Fraction* fThree = new Fraction();
    fOne->num = 8;
    fOne->den = 9;
    fTwo->num = 3;
    fTwo->den = 2;
    fThree->num = 1;
    fThree->den = 3;
    fArray[0] = fOne;
    fArray[1] = fTwo;
    fArray[2] = fThree;
    display(fArray, 3);

    system("pause");
    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-06-14T15:46:12+00:00Added an answer on June 14, 2026 at 3:46 pm

    This is a FAQ.

    Note that const T* a[] means T const* a[], i.e. it’s not the array itself that you have declared const; instead you have declared an array of pointers to const items.

    Essentially, if the language provided an implicit conversion T** → T const**, then you could inadvertently attempt to change something that was originally declared const:

    int const     v = 666;
    int*          p;
    int**         pp = &p;
    int const**   ppHack = pp;    //! Happily not allowed!
    
    *ppHack = &v;    // Now p points to the const v...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is difference between the following two function definitions? A 2D array is being
Is there any difference between Array.Copy and CopyTo ? Are they just overloaded?
Difference between start-pointers and interior-pointers and in what situation we should prefer one over
What is the difference between std::array and std::vector ? When do you use one
Is there any difference between array.count and array.size ? I am getting errors sometimes
Possible Duplicate: Difference between int[] array and int array[] I was sure that this
I'm having trouble passing an array between methods and have excerpted my code below.
what is the difference between array and list?
I have following two arrays. I want the difference between these two arrays. That
Are there any differences between get_object_vars($obj) and (array) $obj ? Both seem to return

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.