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 wild pointer in c with example?
What is #include cctype?
how to introdu5ce my self in serco
What is ## preprocessor operator in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is difference between union and structure in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What are the differences between new and malloc in C?
How many keywords are there in c?
Which is an example of a structural homology?
What is a substring in c?
How can I find the modification date of a file?
Write a program to print fibonacci series using recursion?
How do we make a global variable accessible across files? Explain the extern keyword?
What should malloc(0) do?