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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:06:47+00:00 2026-05-28T00:06:47+00:00

I have legacy code that is using an enum as a range and iterating

  • 0

I have legacy code that is using an enum as a range and iterating through the range. I need to port this to a new platform and make it safer.

Note: enums are not safe to iterate through as there may be “holes” or gaps between values.

I’m looking for a safe C language pattern for a range type.

For example, given a range (RED, VIOLET, BLUE, GREEN, YELLOW, ORANGE), I want to iterate through each value, like “FOR color IN (RED, VIOLET, BLUE, GREEN, YELLOW, ORANGE)”.

When I search SO and the web, I get replies about the range of a data type, such as the range of an integer.

This code will reside on an embedded system that uses an ARM7 processor.

  • 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-28T00:06:48+00:00Added an answer on May 28, 2026 at 12:06 am

    An enum can do just fine, as long as you let the compiler choose values. This way, there would be no holes. You could, for example, do this:

    enum colors {
        FIRST_COLOR=0,
        RED=FIRST_COLOR, VIOLET, BLUE, GREEN, YELLOW, ORANGE,
        NUM_COLORS
    }
    
    enum colors color;
    for (color=FIRST_COLOR; color<NUM_COLORS; color++) {
        // whatever
    }
    

    And a quote from the ANSI C standard:

    If the first enumerator has no = , the value of its enumeration
    constant is 0. Each subsequent enumerator with no = defines its
    enumeration constant as the value of the constant expression obtained
    by adding 1 to the value of the previous enumeration constant

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

Sidebar

Related Questions

I have this legacy code that I am working with and there is code
I'm using RHEL 5.3 (linux 2.6.18) I have a legacy code that relies on
I have some legacy code that I'm rewriting using SubSonic to help the future
We have a legacy server code that we want to abandon and develop new
I have some legacy python code that using pypar and mpich2 to transmit data
We have some legacy code that needs to identify in the Page_Load which event
I have some legacy code that was used to monitor my applications cpu,memory etc
I have some legacy C code that I recently compiled on Linux. On the
We have some legacy ASP.NET code that detects if a request is secure, and
I have a whole heap of legacy code that I checked into my SVN

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.