programming c++ on arduino ide

I am new to arduino and experienced c++ programmer.
my question , can I write c++ code using the standard arduino ide ?

The IDE uses C++.

Pete

elih6245:
I am new to arduino and experienced c++ programmer.
my question , can I write c++ code using the standard arduino ide ?

Arduino sketches are compiled with a more or less standard C++ compiler, if that is what you mean.

But it depends on your "C++ code" ... some features of C++ are not be suitable for micro-controllers, as they eat up too much space (e. exceptions, RTTI). I'm not sure if there is a guide somewhere, but don't expect all C++ features to work.