What is the main differences between C and Embedded C?
Answer Posted / sai ram
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 ? | 11 Yes | 4 No |
Post New Answer View All Answers
What do you mean by dynamic memory allocation in c?
Is file a keyword in c?
What is null in c?
How can I read data from data files with particular formats?
What is the use of putchar function?
What are the 5 data types?
What is time complexity c?
What are reserved words with a programming language?
What are comments and how do you insert it in a C program?
Which header file is used for clrscr?
where are auto variables stored? What are the characteristics of an auto variable?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What are the uses of a pointer?
What is context in c?
Why we use void main in c?