Basic and Advance C Question:
Download Questions PDF

What does the message "Automatic aggregate intialization is an ANSI feature" mean?

Answer:

What does the message Automatic aggregate intialization is an ANSI feature'' mean? My compiler is complaining about valid ANSI code.

Messages like these are typically emitted by pre-ANSI compilers which have been upgraded just enough to detect (but not properly translate) new C features which were introduced with the ANSI Standard. The implication of the message is that you should pay your vendor more money for a copy of their real ANSI C compiler.

Download C Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is wrong with this code?What was noalias and what ever happened to it?