[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


Why doesn't my C compiler flag an error when I assign an...

<< Back to: comp.lang.c FAQ list Table of Contents

Question by mavenmare
Submitted on 11/15/2005
Related FAQ: comp.lang.c FAQ list Table of Contents
Rating: Not yet rated Rate this question: Vote
Why doesn't my C compiler flag an error when I assign an enumeration value defined for Enum_Type2 to a global variable defined to be Enum_Type1 ?

Example -

"dat_defs.h" defines the 2 types:
enum Enum_Type1 { Val1,      Val2      };
enum Enum_Type2 { OtherVal1, OtherVal2 };

"globals.c": defines the variable used
enum Enum_Type1 Gvar;

"globals.h": extern header file
extern enum Enum_Type1 Gvar;

"program.c":
#include "dat_defs.h"
#include "globals.h"

main()
{
Gvar = OtherVal1; // assigns other enum value
}


Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.lang.c FAQ list Table of Contents


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.