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
Differentiate between a for loop and a while loop? What are it uses?
What is meant by type specifiers?
Explain what are multidimensional arrays?
what type of questions arrive in interview over c programming?
Explain what are compound statements?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are header files and what are its uses in C programming?
What is #include stdio h?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
string reverse using recursion
How we can insert comments in a c program?
What does malloc () calloc () realloc () free () do?
Do you know pointer in c?
What is 1d array in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings