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 ?    199 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is sizeof () an operator and not a function?

586


Why is c called "mother" language?

855


Explain how many levels deep can include files be nested?

626


What does the file stdio.h contain?

605


write a progrmm in c language take user interface generate table using for loop?

1574






Why enum is used in c?

524


How can I avoid the abort, retry, fail messages?

659


What is volatile keyword in c?

583


How many types of arrays are there in c?

593


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

1651


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

770


What is the difference between malloc calloc and realloc in c?

649


How do I read the arrow keys? What about function keys?

614


What is sizeof array?

613


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

720