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
What are the types of functions in c?
Should I learn c before c++?
Explain what are the standard predefined macros?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Is that possible to store 32768 in an int data type variable?
Is exit(status) truly equivalent to returning the same status from main?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How to Throw some light on the splay trees?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is use of #include in c?
Why is c still so popular?
List some basic data types in c?
What is meant by keywords in c?
How can I trap or ignore keyboard interrupts like control-c?
What is the use of ?: Operator?