ARDUINO IDE C

Hi all

Does the IDE of ARDUINO support the FULL C language standard ,
or is it a "shrinked" version of the standard C language compiler?
I am not talking about C commands that are relevant to desktop apps like FILE related C statements.
Thanks
Elico

The Arduino IDE and associated compiler use C++ and provides the vast majority of C++ language features.
Are you interested in any particular features ?

The only thing you have to be aware of is that you are in an embedded environment which means limited memory, so some things you can happily do in C++ on a laptop might fall over on an Arduino.

The answer to your question would seem to depend on which "standard" you want to compare to.

elico:
Does the IDE of ARDUINO support the FULL C language standard ,

There is no one standard - there are many standards. The Arduino IDE uses GCC 4.3.2. Here are the language standards it conforms to:

The IDE uses the AVR libc runtime library. The Arduino reference page links to the AVR libc reference pages.