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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:03:20+00:00 2026-05-30T01:03:20+00:00

I have the following bit of code: As a global variable: char *orderFiles[10]; And

  • 0

I have the following bit of code:

As a global variable:

char *orderFiles[10];

And then my main method:

int main(int argc, char *argv[])
{
    orderFiles = argv;
}

However it keeps giving me an error. What am I doing wrong?

  • 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-30T01:03:21+00:00Added an answer on May 30, 2026 at 1:03 am

    It’s giving you an error because char *x[10] gives you an array of ten char pointers which is non-modifiable. In other words, you cannot assign to x, nor change it in any way. The equivalent changeable version would be char **orderFiles – you can assign argv to that just fine.

    As an aside, you could transfer individual arguments to your array thus:

    for (i = 0; i <= argc && i < sizeof(orderFiles)/(sizeof(*orderFiles); i++)
        orderFiles[i] = argv[i];
    

    but that seems rather convoluted. It will either fill up orderFiles with the first N arguments or partially fill it, making the next one NULL.

    If your intent is simply to stash away the arguments into a global so that you can reference them anywhere, you should do something like:

    #include <stdio.h>
    
    char **orderFiles;
    int orderCount;
    
    static void someFn (void) {
        int i;
        printf ("Count = %d\n", orderCount);
        for (i = 0; i < orderCount; i++)
            printf ("%3d: [%s]\n", i, orderFiles[i]);
        // or, without orderCount:
        //    for (i = 0; orderFiles[i] != NULL; i++)
        //        printf ("%3d: [%s]\n", i, orderFiles[i]);
        //    printf ("Count was %d\n", i);
    
    }
    
    int main (int argc, char **argv) {
        orderCount = argc;
        orderFiles = argv;
        someFn();
        return 0;
    }
    

    That code saves the arguments into globals so they can be accessed in a different function.

    You should save both arguments to main if you want to use argc as well although, technically, it’s not necessary since argv[argc] is guaranteed to be NULL for hosted environments – you could use that to detect the end of the argument array.

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

Sidebar

Related Questions

I have the following bit of code in a method called by clicking the
For example I have the following bit of code: <cfhttp url=FileURL method=get result=HTTPResult timeout=5
I have the following code in file main.c: int main() { int i; for
I have the following bit of PHP code, which creates three database tables, then
I have the following bit of code which runs a SQL statement: int rowsEffected
I have the following bit of code: protected function onEnterFrame(e:Event):void { var diff:Number; //
I have the following bit of code, simply: $(function() { $('a.add-photos-link').live('click', function(e) { $(this).colorbox({
I have the following bit of code that worked as expected before we upgraded
I have the following bit of legacy C++ code that does not compile: #include
How do I change the following bit of code so that I only have

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.