vote up 1 vote down star

can any body tell me the differences between them?

flag
Are you referring to C++ and Embedded C++? – mdec Oct 24 '08 at 9:58

4 Answers

vote up 4 vote down

http://wiki.answers.com/Q/What_is_the_difference_between_c_language_and_embedded_c_language

link|flag
Why was it voted down? – vito Oct 24 '08 at 7:20
I learned something today... :-) – PhiLho Oct 24 '08 at 9:28
vote up 3 vote down

Basically, there isn't one. Embedded refers to the hosting computer / microcontroller, not the language. The embeddded system might have fewer resources and interfaces for the programmer to play with, and hence C will be used differently, but it is still the same ISO defined language.

link|flag
vote up 4 vote down

In the C standard, a standalone implementation doesn't have to provide all of the library functions that a hosted implementation has to provide. The C standard doesn't care about embedded, but vendors of embedded systems usually provide standalone implementations with whatever amount of libraries they're willing to provide.

link|flag
vote up 1 vote down

Embedded environment, sometime, there is no MMU, less memory, less storage space. In C programming level, almost same, cross compiler do their job.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.