What is the main differences between C and Embedded C?

Answer Posted / swati jawanjal

Embedded c code generates a .hex file while a convention c
code generates a compatible .exe file.

C language uses the desktop OS memory while embedded C uses
the controllers inbuilt or any externally attached memory.

Is This Answer Correct ?    49 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

while initialization of array why we use a[][2] why not a[2][]...?

2104


What is a macro in c preprocessor?

853


How can you allocate arrays or structures bigger than 64K?

905


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

1028


What does it mean when a pointer is used in an if statement?

867


Why does everyone say not to use gets?

814


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2890


Explain what is the heap?

814


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

841


2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist

2717


Define C in your own Language.

836


How can a number be converted to a string?

921


What is a function in c?

1207


Explain the difference between structs and unions in c?

776


Explain about block scope in c?

860