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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:26:24+00:00 2026-05-29T07:26:24+00:00

Been a loooooong time since I’ve actually coded straight c (not even C++ but

  • 0

Been a loooooong time since I’ve actually coded straight c (not even C++ but c) and I know how to use the extern keyword to share a variable between separate .c files, but what I can’t remember is how to share constant data between files?

For example, say I have this… (note, this is not c code (or if it is, its an accident) but rather pseudo-code to show what I want):

const char const * WEEKDAYS[] = {
    "Sunday",
    "Monday", 
    "Tuesday"
}

Now I’m trying to create an array of char pointers that point to the data. Again, this is constant data so I’d like to just define it in a header directly, but that’s where I can’t figure out how to do it, or if that isn’t how you should do it anyway and you should still declare it in the c file, then use extern in the header you include elsewhere.

Again, been a long time since I’ve had to deal with this thanks to the newer, more modern languages, but hoping you can help.

  • 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-29T07:26:25+00:00Added an answer on May 29, 2026 at 7:26 am

    It’s the same as for variables:

    // header
    extern const char * const WEEKDAYS[3];
    
    // implementation
    const char * const WEEKDAYS[3] = {
        "Sunday",
        "Monday",
        "Tuesday"
    };
    

    Also you probably want const char * const, not const char const * which is invalid syntax.

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

Sidebar

Related Questions

Been a while since I've dealt with ASP.NET and this is the first time
Been Trying for 8 hours, not too sure which part gone wrong. i know
been trying out this for quite some time but I'm still unable to built
been looking but not much luck, i want to create a function that only
Been creating a time code format from decimal seconds but now need to get
Been looking around the web, but not found anything so far... can anyone help?
Been trying to upgrade my subversion installation, but due to (what I believe) are
Been stumbling me for over an hour now and that means time to ask
Been developing an application using PHP's PEAR framework, but ran into an issue where
Been googling around but I can't find any help on this. I am trying

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.