What is the main differences between C and Embedded C?

Answer Posted / vishnu948923

C is for desktop computers, embedded C usually is for
microcontroller based applications.
C use the resources of desktop computers (memory, OS, etc)
Embbeded C use only limited resources available in chip
(limited RAM, ROM, ports, etc).
Embbed C could be a subset of C.

Is This Answer Correct ?    200 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me what are bitwise shift operators?

920


What is c variable?

814


How can I find out if there are characters available for reading?

878


Explain main function in c?

868


List a few unconditional control statement in c.

781


Array is an lvalue or not?

869


What does struct node * mean?

824


How to delete a node from linked list w/o using collectons?

2401


How do you define a function?

798


Where are local variables stored in c?

785


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

1046


Can you please explain the scope of static variables?

819


Can math operations be performed on a void pointer?

772


The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?

921


Explain the difference between ++u and u++?

860