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 are the types of unary operators?
What Is The Difference Between Null And Void Pointer?
Define and explain about ! Operator?
What does the c in ctime mean?
What is use of #include in c?
What is a nested formula?
Write a program to print ASCII code for a given digit.
What are the 4 types of unions?
Why do we need functions in c?
What is default value of global variable in c?
How many keywords (reserve words) are in c?
Is null always defined as 0(zero)?
code for replace tabs with equivalent number of blanks
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?