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 is the use of ?
How many identifiers are there in c?
What is the purpose of & in scanf?
What are the 5 types of inheritance in c ++?
What does *p++ do?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What are different types of variables in c?
What is structure in c language?
Explain what happens if you free a pointer twice?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain why c is faster than c++?
Differentiate between a for loop and a while loop? What are it uses?
How to define structures? ·
Where in memory are my variables stored?
Why is c so popular?