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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T11:36:51+00:00 2026-06-07T11:36:51+00:00

can we pass enum as an array or pointer. I heard this type of

  • 0

can we pass enum as an array or pointer. I heard this type of question somewhere in internet. so I want to check what is that mean. how can we do that? example?

  • 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-07T11:36:54+00:00Added an answer on June 7, 2026 at 11:36 am

    Just like any other array:

    #include <stdio.h>
    
    enum colour {
        WHITE,
        RED,
        ORANGE,
        YELLOW,
        GREEN,
        BLUE,
        INDIGO,
        VIOLET,
        BLACK
    };
    
    char *colour_names[] = {
        "WHITE",
        "RED",
        "ORANGE",
        "YELLOW",
        "GREEN",
        "BLUE",
        "INDIGO",
        "VIOLET",
        "BLACK"
    };
    
    void show_colours(enum colour colours[], int count) {
        int i;
    
        for (i = 0; i < count; ++i) {
            printf("%s ", colour_names[(int)colours[i]]);
        }
        printf("\n");
    }
    
    int main(int argc, char **argv) {
        enum colour estonia[] = {BLUE, BLACK, WHITE};
        show_colours(estonia, 3);
        return 0;
    }
    

    Output:

    BLUE BLACK WHITE 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to make a function that can take an enum type, display all
I know that maybe this question has been asked before, but I can't seem
In JSF 2 you can pass around ids, Strings other things that can be
I know that I can pass a string as the second parameter to the
Is there any way that I can pass arguments in selector? example: I have
I know from here that I can pass an ignore option in the jQuery.validate
This is probably a stupid question, but I can't seem to do it. I
I'm fairly sure this is a template question, since I can't seem to solve
I think this question needs some code: private TypeValues GetEnumValues(Type enumType, string description) {
This is a similar question to How to bind a custom Enum description to

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.